Add 'Deliver' Stage

This commit is contained in:
thavaselvan7 2018-10-12 08:30:12 +00:00
parent a3df4d1ac5
commit c85c22136b

15
Jenkinsfile vendored
View file

@ -26,5 +26,20 @@ pipeline {
} }
} }
} }
stage('Deliver') {
agent {
docker {
image 'cdrx/pyinstaller-linux:python2'
}
}
steps {
sh 'pyinstaller --onefile sources/add2vals.py'
}
post {
success {
archiveArtifacts 'dist/add2vals'
}
}
}
} }
} }