Update Jenkinsfile

This commit is contained in:
Zaman 2020-03-03 12:26:57 +05:00
parent 412c484191
commit 998103654e

16
Jenkinsfile vendored
View file

@ -29,6 +29,20 @@ pipeline {
} }
} }
} }
stage('Deliver') {
agent {
docker {
image 'six8/pyinstaller-alpine'
}
}
steps {
sh 'pyinstaller-alpine --noconfirm --onefile --clean sources/add2vals.py'
}
post {
success {
archiveArtifacts 'dist/add2vals'
}
}
}
} }
} }