This is an automated email from the ASF dual-hosted git repository.
andor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/master by this push:
new 500372d Fix Precommit Job
500372d is described below
commit 500372dc7d076617cbe2509ed8e073470f3807a8
Author: Enrico Olivelli <[email protected]>
AuthorDate: Thu Sep 17 19:46:50 2020 +0200
Fix Precommit Job
It looks like the precommit job is performing an additional "git clone"
that overwrites the PR
Author: Enrico Olivelli <[email protected]>
Reviewers: [email protected]
Closes #1460 from eolivelli/fix/pr-job-fix
---
Jenkinsfile-PreCommit | 1 -
1 file changed, 1 deletion(-)
diff --git a/Jenkinsfile-PreCommit b/Jenkinsfile-PreCommit
index 90b3f99..c7ba439 100644
--- a/Jenkinsfile-PreCommit
+++ b/Jenkinsfile-PreCommit
@@ -36,7 +36,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"
}