simple-python-pyinstaller-app/Jenkinsfile
2020-03-03 10:55:39 +05:00

25 lines
517 B
Groovy

pipeline {
agent none
options {
skipStagesAfterUnstable()
}
stages {
stage('Deliver') {
agent {
docker {
image 'cdrx/pyinstaller-linux:python2'
}
}
steps {
sh 'pyinstaller --onefile sources/add2vals.py'
}
post {
success {
archiveArtifacts 'dist/add2vals'
}
}
}
}
}