aexiaoliou hace 2 años
padre
commit
6b5e9d5ebf
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. 10 0
      Jenkinsfile

+ 10 - 0
Jenkinsfile

@@ -0,0 +1,10 @@
+pipeline {
+    agent { dockerfile true }
+    stages {
+        stage {
+            steps {
+                sh 'composer --version'
+            }
+        }
+    }
+}