jamesread 4 gadi atpakaļ
vecāks
revīzija
ff45320cbe
1 mainītis faili ar 5 papildinājumiem un 0 dzēšanām
  1. 5 0
      Jenkinsfile

+ 5 - 0
Jenkinsfile

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