update Jenkinsfile

This commit is contained in:
Franzi 2020-05-17 19:15:43 +02:00
parent 7a04c7182e
commit 3c56a0ce51
1 changed files with 7 additions and 4 deletions

11
Jenkinsfile vendored
View File

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