add deliver
This commit is contained in:
parent
2304da7da3
commit
85890aef26
1 changed files with 35 additions and 20 deletions
17
Jenkinsfile
vendored
17
Jenkinsfile
vendored
|
@ -1,4 +1,4 @@
|
|||
pipeline {
|
||||
pipeline {
|
||||
agent none
|
||||
stages {
|
||||
stage('Build') {
|
||||
|
@ -26,5 +26,20 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
stage('Deliver') {
|
||||
agent {
|
||||
docker {
|
||||
image 'cdrx/pyinstaller-linux:python2'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
sh 'pyinstaller --onefile sources/add2vals.py'
|
||||
}
|
||||
post {
|
||||
success {
|
||||
archiveArtifacts 'dist/add2vals'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue