1
0
Fork 0
simple-python-pyinstaller-app/Jenkinsfile
2021-11-17 00:05:39 -05:00

16 linhas
332 B
Groovy

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