Update Jenkinsfile

This commit is contained in:
Zaman 2020-03-03 12:15:02 +05:00
parent 9a074e825a
commit 412c484191

16
Jenkinsfile vendored
View file

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