ソースを参照

added jenkinsfile

Patric 1 年間 前
コミット
2b1b064d9a
1 ファイル変更10 行追加0 行削除
  1. 10 0
      Jenkinsfile

+ 10 - 0
Jenkinsfile

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