Add final deliver stage

This commit is contained in:
xiaojias 2019-03-06 11:56:51 +08:00
parent 697fe2d724
commit 2340547dd3

15
Jenkinsfile vendored
View file

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