add deliver

This commit is contained in:
Jonathan Ross Claytor 2019-01-30 15:05:34 -06:00 committed by GitHub
parent 2304da7da3
commit 85890aef26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
Jenkinsfile vendored
View file

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