simple-python-pyinstaller-app/JenkinsFile
2018-05-21 15:45:26 +02:00

15 lines
315 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'
}
}
}
}