Testing
Apps/everybody-mov/pipeline/head There was a failure building this commit Details

This commit is contained in:
Amber McCloughan 2022-09-01 00:41:17 -04:00
parent 2361cb03e4
commit 0fbeda41a1
1 changed files with 6 additions and 2 deletions

8
Jenkinsfile vendored
View File

@ -6,11 +6,15 @@ pipeline {
} }
} }
environment {
HOME = "${env.WORKSPACE}"
}
stages { stages {
stage('Setup') { stage('Setup') {
steps { steps {
sh 'python -m pip3 install --no-cache-dir --upgrade --user pip' sh 'python -m pip 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 pipenv --user'
sh 'python -m pipenv install' sh 'python -m pipenv install'
} }
} }