Add build file

這個提交存在於:
Samira Ouaaz 2021-09-30 15:41:19 -04:00
父節點 128e9ba59f
當前提交 e6127ee779

16
Jenkinsfile vendored 一般檔案
查看文件

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