Update Jenkinsfile

This commit is contained in:
Xiao Jia shan 2019-03-08 12:50:52 +08:00 committed by GitHub
parent f009442f8c
commit cb845cfd58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

@ -70,8 +70,12 @@ pipeline {
docker { docker {
image 'richardx/pyinstaller-linux:python2' image 'richardx/pyinstaller-linux:python2'
} }
post {
success {
archiveArtifacts 'dist/LogfileMonitor'
} }
}
steps { steps {
sh 'pyinstaller --onefile sources/LogfileMonitor.py' sh 'pyinstaller --onefile sources/LogfileMonitor.py'
} }