ソースを参照

checkout scm!

jamesread 4 年 前
コミット
ff45320cbe
1 ファイル変更5 行追加0 行削除
  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'
             }