Parcourir la source

added jenkinsfile

Patric il y a 1 an
Parent
commit
2b1b064d9a
1 fichiers modifiés avec 10 ajouts et 0 suppressions
  1. 10 0
      Jenkinsfile

+ 10 - 0
Jenkinsfile

@@ -0,0 +1,10 @@
+pipeline {
+    agent any
+    stages {
+        stage('Hello') {
+            steps {
+                echo 'Hello World'
+            }
+        }
+    }
+}