Setting Up pipenv in building

This commit is contained in:
reverend 2021-07-16 13:11:10 +02:00
parent ccd701ea60
commit 8da6964b3c
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored
View File

@ -13,6 +13,16 @@ pipeline {
}
stages {
stage('setup') {
steps {
script {
sh 'pipenv install'
sh 'pipenv install --dev'
}
}
}
stage('migration') {
steps {
script {