From 7ae4dd4e3b8131e6f55aee28f468ef3a166657d2 Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Tue, 26 Oct 2021 09:46:11 -0400 Subject: [PATCH] Trying to understand the environment Signed-off-by: Cliff Hill --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b9c90d8..10f069d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,9 @@ pipeline { stages { stage('Test') { steps { - sh 'pip3 install --upgrade pip' + sh 'echo $USER' + sh 'pwd' + sh 'pip3 install -U pip' sh 'pip3 install wheel nox nox_poetry poetry' sh 'nox -x' }