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 0535fac ZOOKEEPER-3896: Remove badly behaving PollSCM trigger
0535fac is described below
commit 0535faceb39a145c5e393618d7456a80baefabfd
Author: Andor Molnar <andor@apache.org>
AuthorDate: Mon Jul 27 15:47:20 2020 +0200
ZOOKEEPER-3896: Remove badly behaving PollSCM trigger
PollSCM trigger triggers a build every time it scans the ZooKeeper repo regardless the
branch pointer has been changed or not. Instead, I try to use the built-in 'Scan Multibranch
Pipeline' instead which should be good for the same purpose.
Author: Andor Molnar <andor@apache.org>
Reviewers: Enrico Olivelli <eolivelli@apache.org>
Closes #1415 from anmolnar/ZOOKEEPER-3896
(cherry picked from commit 1c41e127537f66842515ccb21fb48f1670003454)
Signed-off-by: Enrico Olivelli <eolivelli@apache.org>
---
Jenkinsfile | 1 -
1 file changed, 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 9c3e4f6..ff76a9f 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -25,7 +25,6 @@ pipeline {
}
triggers {
- pollSCM('@hourly')
cron('@daily')
}
|