Bulat Yusupov 5 anni fa
parent
commit
9f653d471c
1 ha cambiato i file con 12 aggiunte e 0 eliminazioni
  1. 12 0
      Jenkinsfile

+ 12 - 0
Jenkinsfile

@@ -0,0 +1,12 @@
+pipeline {
+
+    agent any
+
+    stages {
+        stage('Test') {
+            steps {
+                echo 'Test...'
+            }
+        }
+    }
+}