From 25c3c268653673958eec71cc9925fabc8d377e39 Mon Sep 17 00:00:00 2001 From: Andor Molnar Date: Tue, 9 Feb 2021 16:30:54 +0100 Subject: [PATCH] ZOOKEEPER-4207: Remove extra checkout from Jenkinsfile I believe we don't need to add the git checkout to the "Steps" section. I cannot see it neither in owasp nor the PR jenkinsfiles. Also I see that master branch gets also checked out during our normal builds, so I hope this will fix it. Target branches: master, branch-3.7, branch-3.6, branch-3.5 Author: Andor Molnar Reviewers: Enrico Olivelli Closes #1600 from anmolnar/ZOOKEEPER-4207 (cherry picked from commit 8c68933226595b839ba3694dacd39cd2b2a21878) Signed-off-by: Enrico Olivelli --- Jenkinsfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index ed074c95617..40fcdd5bbad 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -51,7 +51,6 @@ pipeline { stages { stage('BuildAndTest') { steps { - git 'https://github.com/apache/zookeeper' sh "git clean -fxd" sh "mvn verify spotbugs:check checkstyle:check -Pfull-build -Dsurefire-forkcount=4" }