Third Part

This commit is contained in:
DaWilliam 2018-03-04 00:16:49 -05:00 committed by GitHub
parent 1dd3187a36
commit ca8d3cedc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
Jenkinsfile vendored
View file

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