浏览代码

initial commit

Bulat Yusupov 5 年之前
父节点
当前提交
9f653d471c
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. 12 0
      Jenkinsfile

+ 12 - 0
Jenkinsfile

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