Browse Source

initial commit

Bulat Yusupov 5 năm trước cách đây
mục cha
commit
9f653d471c
1 tập tin đã thay đổi với 12 bổ sung0 xóa
  1. 12 0
      Jenkinsfile

+ 12 - 0
Jenkinsfile

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