simple-python-pyinstaller-app/jenkinsfile.txt
2018-04-11 12:55:28 -04:00

15 lines
No EOL
318 B
Text

pipeline {
agent none
stages {
stage('Build') {
agent {
docker {
image 'python:2-alpine'
}
}
steps {
sh 'python -m py_compile sources/add2vals.py sources/calc.py'
}
}
}
}