diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..68326db --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,16 @@ +pipeline { + agent none //1 + stages { + stage('Build') { //2 + agent { + docker { + image 'python:2-alpine' //3 + } + } + steps { + sh 'python -m py_compile sources/add2vals.py sources/calc.py' //4 + } + } + } +} +