We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5559ce7 commit c45d6dbCopy full SHA for c45d6db
Jenkinsfile
@@ -27,5 +27,24 @@ pipeline {
27
}
28
29
30
+ stage('Deliver') {
31
+ agent any
32
+ environment {
33
+ VOLUME = '$(pwd)/sources:/src'
34
+ IMAGE = 'cdrx/pyinstaller-linux:python2'
35
+ }
36
+ steps {
37
+ dir(path: env.BUILD_ID) {
38
+ unstash(name: 'compiled-results')
39
+ sh "docker run --rm -v ${VOLUME} ${IMAGE} 'pyinstaller -F add2vals.py'"
40
41
42
+ post {
43
+ success {
44
+ archiveArtifacts "${env.BUILD_ID}/sources/dist/add2vals"
45
+ sh "docker run --rm -v ${VOLUME} ${IMAGE} 'rm -rf build dist'"
46
47
48
49
50
0 commit comments