Browse Source

checkout scm!

jamesread 4 năm trước cách đây
mục cha
commit
ff45320cbe
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      Jenkinsfile

+ 5 - 0
Jenkinsfile

@@ -1,10 +1,15 @@
 pipeline {
     agent any
 
+	options {
+		skipDefaultCheckout(true)
+	}
+
     stages {
         stage ('Pre-Build') {
             steps {
 				cleanWs()
+				checkout scm
 
 				sh 'make go-tools'
             }