Merge c719352a09 into 128e9ba59f
這個提交存在於:
當前提交
01db5d5251
共有 1 個檔案被更改,包括 16 行新增 和 0 行删除
16
jenkinsfile
一般檔案
16
jenkinsfile
一般檔案
|
|
@ -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*')
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
載入中…
新增問題並參考