Add Jenkinsfile

這個提交存在於:
Monica Del Rio 2021-11-30 14:02:08 -04:00
父節點 128e9ba59f
當前提交 971d6db14d

17
Jenkinsfile vendored 一般檔案
查看文件

@ -0,0 +1,17 @@
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*')
}
}
}
}