Merge c719352a09
into 128e9ba59f
This commit is contained in:
commit
01db5d5251
1 changed files with 16 additions and 0 deletions
16
jenkinsfile
Normal file
16
jenkinsfile
Normal file
|
@ -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*')
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue