aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAsteroide <thomas.duval@orange.com>2018-04-20 12:56:58 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-04-20 12:56:58 +0000
commite8b0833f4aac21c5da5092099182af9b2362ea10 (patch)
treeadba3b1129911765701601cb7a14c78fa9e53856
parente93c1de651a76f06ef0a3f247db4be5a40860139 (diff)
parentb5d3c9bb47fc4a93fdba5dafd2c45f7ce29db675 (diff)
Merge "Testing pipeline in Jenkins"
-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