simple-python-pyinstaller-app/Jenkinsfile
2020-08-24 20:55:02 -05:00

16 lines
No EOL
389 B
Groovy

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