aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Duval <thomas.duval@orange.com>2018-04-20 14:55:36 +0200
committerThomas Duval <thomas.duval@orange.com>2018-04-20 14:55:36 +0200
commitb5d3c9bb47fc4a93fdba5dafd2c45f7ce29db675 (patch)
tree2468e6e1ea8c72ea03473e46deb863ccc7e0a4e1
parentaef6a3af1badef9e8de50f288537528af6af44af (diff)
Testing pipeline in Jenkins
Change-Id: Ibd898f2cefd1194e0604d243d155b6ffcab760ab
-rw-r--r--python_moonutilities/Jenkinsfile10
1 files changed, 10 insertions, 0 deletions
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