소스 검색

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