Patric 1 anno fa
parent
commit
2b1b064d9a
1 ha cambiato i file con 10 aggiunte e 0 eliminazioni
  1. 10 0
      Jenkinsfile

+ 10 - 0
Jenkinsfile

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