Merge c719352a09
into 128e9ba59f
This commit is contained in:
incheckning
01db5d5251
1 ändrade filer med 16 tillägg och 0 borttagningar
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*')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Laddar…
Referens i nytt ärende