From 0fbeda41a1bb98bcd47aeeb834e0a56de81b4841 Mon Sep 17 00:00:00 2001 From: Amber Date: Thu, 1 Sep 2022 00:41:17 -0400 Subject: [PATCH] Testing --- Jenkinsfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d7ade19..02dbe7f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,11 +6,15 @@ pipeline { } } + environment { + HOME = "${env.WORKSPACE}" + } + stages { stage('Setup') { steps { - sh 'python -m pip3 install --no-cache-dir --upgrade --user pip' - sh 'python -m pip3 install --no-cache-dir pipenv --user' + sh 'python -m pip install --no-cache-dir --upgrade --user pip' + sh 'python -m pip install --no-cache-dir pipenv --user' sh 'python -m pipenv install' } }