sifu-gogs před 2 roky
rodič
revize
af6840434d
1 změnil soubory, kde provedl 21 přidání a 0 odebrání
  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....'
+            }
+        }
+    }
+}