From 39f24f938808cc49f4a7796e6a844180c4a86ea5 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Wed, 5 Aug 2020 15:36:27 -0700 Subject: [PATCH] skip checkout --- Jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 4beecd2b33..5572a3c396 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -53,6 +53,9 @@ pipeline { args '--privileged --shm-size=1G --user=root' } } + options { + skipDefaultCheckout true + } stages { stage('Build') { steps { @@ -63,6 +66,7 @@ pipeline { post { always { // need to do this since container runs as root + sh "chmod -R 777 ." cleanWs() } }