sifu-gogs hace 2 años
padre
commit
af6840434d
Se han modificado 1 ficheros con 21 adiciones y 0 borrados
  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....'
+            }
+        }
+    }
+}