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'
+            }
+        }
+    }
+}