Ver código fonte

checkout scm!

jamesread 4 anos atrás
pai
commit
ff45320cbe
1 arquivos alterados com 5 adições e 0 exclusões
  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'
             }