Add 'Deliver' stage

This commit is contained in:
jesuyed 2018-01-16 11:43:40 +00:00
parent fa85c98c6c
commit a2db9bad96

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'
}
}
}
}
}