sifu-gogs 2 年之前
父节点
当前提交
af6840434d
共有 1 个文件被更改,包括 21 次插入0 次删除
  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....'
+            }
+        }
+    }
+}