Testing pipeline in Jenkins 49/56149/1
authorThomas Duval <thomas.duval@orange.com>
Fri, 20 Apr 2018 12:55:36 +0000 (14:55 +0200)
committerThomas Duval <thomas.duval@orange.com>
Fri, 20 Apr 2018 12:55:36 +0000 (14:55 +0200)
Change-Id: Ibd898f2cefd1194e0604d243d155b6ffcab760ab

python_moonutilities/Jenkinsfile [new file with mode: 0644]

diff --git a/python_moonutilities/Jenkinsfile b/python_moonutilities/Jenkinsfile
new file mode 100644 (file)
index 0000000..95939e9
--- /dev/null
@@ -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