Browse Source

initial commit

Bulat Yusupov 5 years ago
parent
commit
9f653d471c
1 changed files with 12 additions and 0 deletions
  1. 12 0
      Jenkinsfile

+ 12 - 0
Jenkinsfile

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