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' } }