This is an automated email from the ASF dual-hosted git repository.
eolivelli pushed a commit to branch branch-3.6
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/branch-3.6 by this push:
new 8b4be14 ZOOKEEPER-4207: Remove extra checkout from Jenkinsfile
8b4be14 is described below
commit 8b4be143d654c0034c6f4d58da05d9ec72757db1
Author: Andor Molnar <[email protected]>
AuthorDate: Tue Feb 9 16:30:54 2021 +0100
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 <[email protected]>
Reviewers: Enrico Olivelli <[email protected]>
Closes #1600 from anmolnar/ZOOKEEPER-4207
(cherry picked from commit 8c68933226595b839ba3694dacd39cd2b2a21878)
Signed-off-by: Enrico Olivelli <[email protected]>
---
Jenkinsfile | 1 -
1 file changed, 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index ed074c9..40fcdd5 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"
}