sifu-gogs 2 vuotta sitten
vanhempi
commit
af6840434d
1 muutettua tiedostoa jossa 21 lisäystä ja 0 poistoa
  1. 21 0
      Jenkinsfile

+ 21 - 0
Jenkinsfile

@@ -0,0 +1,21 @@
+pipeline {
+    agent any
+
+    stages {
+        stage('Build') {
+            steps {
+                echo 'Building..'
+            }
+        }
+        stage('Test') {
+            steps {
+                echo 'Testing..'
+            }
+        }
+        stage('Deploy') {
+            steps {
+                echo 'Deploying....'
+            }
+        }
+    }
+}