This commit is contained in:
DaWilliam 2018-03-05 14:30:43 +00:00 committed by GitHub
commit 0dfb4b19f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,18 +26,18 @@ pipeline {
} }
} }
} }
stage('Deliver') { stage('Deliver') {
agent { agent {
docker { docker {
image 'cdrx/pyinstaller-linux:python2' image 'cdrx/pyinstaller-linux:python2'
} }
} }
steps { steps {
sh 'pyinstaller --onefile sources/add2vals.py' sh 'pyinstaller --onefile sources/add2vals.py'
} }
post { post {
success { success {
archiveArtifacts 'dist/add2vals' archiveArtifacts 'dist/add2vals'
} }
} }
} }