Update Jenkinsfile

This commit is contained in:
Zaman 2020-03-03 12:37:07 +05:00
parent 894dde52a4
commit aee267f767

16
Jenkinsfile vendored
View file

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