Initial JenkinsFile with python build process

Tento commit je obsažen v:
Jean Visser 2018-05-21 15:45:26 +02:00
rodič 128e9ba59f
revize ee7170ea04

15
JenkinsFile Normální soubor
Zobrazit soubor

@ -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'
}
}
}
}