jamesread 4 anni fa
parent
commit
ff45320cbe
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  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'
             }