checkout scm!

This commit is contained in:
jamesread 2021-10-18 12:18:34 +01:00
parent 802b29f77a
commit ff45320cbe
1 changed files with 5 additions and 0 deletions

5
Jenkinsfile vendored
View File

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