From: Thomas Duval Date: Fri, 20 Apr 2018 12:55:36 +0000 (+0200) Subject: Testing pipeline in Jenkins X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F49%2F56149%2F1;p=moon.git Testing pipeline in Jenkins Change-Id: Ibd898f2cefd1194e0604d243d155b6ffcab760ab --- diff --git a/python_moonutilities/Jenkinsfile b/python_moonutilities/Jenkinsfile new file mode 100644 index 00000000..95939e9b --- /dev/null +++ b/python_moonutilities/Jenkinsfile @@ -0,0 +1,10 @@ +pipeline { + agent { docker { image 'python:3.5.1' } } + stages { + stage('build') { + steps { + sh 'python --version' + } + } + } +} \ No newline at end of file