From a2ccf6c9b609ea2a5eebf4b8794ed48c9cefeb9c Mon Sep 17 00:00:00 2001 From: joshcmart <30727857+joshcmart@users.noreply.github.com> Date: Fri, 25 May 2018 15:40:20 -0400 Subject: [PATCH] Create JenkinsFile --- JenkinsFile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 JenkinsFile diff --git a/JenkinsFile b/JenkinsFile new file mode 100644 index 0000000..047d837 --- /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' + } + } + } +}