From 3961f14c7ed3b0b4cb1639fbefc6910087bb0a26 Mon Sep 17 00:00:00 2001 From: "Matthew Naurayan -X (mnauraya - ROBERT HALF INTERNATIONAL INC at Cisco)" Date: Wed, 2 Jan 2019 15:12:59 -0500 Subject: [PATCH] Add initial JenkinsFile --- JenkinsFile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 JenkinsFile diff --git a/JenkinsFile b/JenkinsFile new file mode 100644 index 0000000..665eba6 --- /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' + } + } + } +}