Add final deliver stage
This commit is contained in:
parent
697fe2d724
commit
2340547dd3
1 changed files with 19 additions and 4 deletions
15
Jenkinsfile
vendored
15
Jenkinsfile
vendored
|
@ -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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue