We use cookies to ensure you get the best experience on our website
Bulat Yusupov
5 years ago
1 changed files with
12 additions and
0 deletions
-
12
0
Jenkinsfile
|
@@ -0,0 +1,12 @@
|
|
|
+pipeline {
|
|
|
+
|
|
|
+ agent any
|
|
|
+
|
|
|
+ stages {
|
|
|
+ stage('Test') {
|
|
|
+ steps {
|
|
|
+ echo 'Test...'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|