Merge a2ccf6c9b6
into 128e9ba59f
This commit is contained in:
commit
4cfd56e250
2 changed files with 15 additions and 0 deletions
15
JenkinsFile
Normal file
15
JenkinsFile
Normal file
|
@ -0,0 +1,15 @@
|
|||
pipeline {
|
||||
agent none
|
||||
stages {
|
||||
stage('Build') {
|
||||
agent {
|
||||
docker {
|
||||
image 'python:2-alpine'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
sh 'python -m py_compile sources/add2vals.py sources/calc.py'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue