simple-python-pyinstaller-app/Jenkinsfile
2021-11-23 20:20:54 +00:00

16 lines
381 B
Groovy

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