aexiaoliou 2 years ago
parent
commit
299b0b19df
2 changed files with 11 additions and 0 deletions
  1. 1 0
      .gitattribute
  2. 10 0
      Jenkinsfile

+ 1 - 0
.gitattribute

@@ -0,0 +1 @@
+Jenkinsfile merge=ours

+ 10 - 0
Jenkinsfile

@@ -0,0 +1,10 @@
+pipeline {
+	dockerfile true
+	stages {
+		stage('dev') {
+			steps {
+				sh 'composer'
+			}
+		}
+	}
+}