sifu-gogs 2 năm trước cách đây
mục cha
commit
af6840434d
1 tập tin đã thay đổi với 21 bổ sung0 xóa
  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....'
+            }
+        }
+    }
+}