Browse Source

added jenkinsfile

Patric 1 year ago
parent
commit
2b1b064d9a
1 changed files with 10 additions and 0 deletions
  1. 10 0
      Jenkinsfile

+ 10 - 0
Jenkinsfile

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