diff --git a/JenkinsFile b/JenkinsFile new file mode 100644 index 0000000..ad34623 --- /dev/null +++ b/JenkinsFile @@ -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' + } + } + } +}