Explorar o código

added jenkinsfile

Patric hai 1 ano
pai
achega
2b1b064d9a
Modificáronse 1 ficheiros con 10 adicións e 0 borrados
  1. 10 0
      Jenkinsfile

+ 10 - 0
Jenkinsfile

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