update Jenkinsfile

This commit is contained in:
Franzi 2020-05-17 19:15:43 +02:00
parent 7a04c7182e
commit 3c56a0ce51

11
Jenkinsfile vendored
View file

@ -23,6 +23,9 @@ pipeline {
} }
} }
stage('dummy mode') { stage('dummy mode') {
when {
branch 'master'
}
steps { steps {
sh """ sh """
. venv/bin/activate . venv/bin/activate
@ -51,10 +54,10 @@ pipeline {
} }
} }
} }
stage('cleanup') { }
steps { post {
sh 'rm -rf venv' always {
} sh 'rm -rf venv'
} }
} }
} }