From ff45320cbe2b0bc0a955ec241ecbac67c2a9992e Mon Sep 17 00:00:00 2001 From: jamesread Date: Mon, 18 Oct 2021 12:18:34 +0100 Subject: [PATCH] checkout scm! --- Jenkinsfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index ec2fc65..ff5ffe9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,10 +1,15 @@ pipeline { agent any + options { + skipDefaultCheckout(true) + } + stages { stage ('Pre-Build') { steps { cleanWs() + checkout scm sh 'make go-tools' }