This is an automated email from the ASF dual-hosted git repository.
virajjasani pushed a commit to branch 5.3
in repository https://gitbox.apache.org/repos/asf/phoenix.git
The following commit(s) were added to refs/heads/5.3 by this push:
new c74a22d5b0 PHOENIX-7850: Unblock Phoenix PR validation builds (#2471)
c74a22d5b0 is described below
commit c74a22d5b08da1067ee50906e831f97bb9e946fb
Author: sanjeet006py <[email protected]>
AuthorDate: Wed May 13 01:28:08 2026 +0530
PHOENIX-7850: Unblock Phoenix PR validation builds (#2471)
---
Jenkinsfile.github | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/Jenkinsfile.github b/Jenkinsfile.github
index b2ed97be20..d6cbe6bfb2 100644
--- a/Jenkinsfile.github
+++ b/Jenkinsfile.github
@@ -25,7 +25,13 @@ pipeline {
options {
// N.B. this is per-branch, which means per PR
disableConcurrentBuilds()
- buildDiscarder(logRotator(daysToKeepStr: '15', artifactDaysToKeepStr:
'5'))
+ buildDiscarder(logRotator(
+ daysToKeepStr: '3',
+ artifactDaysToKeepStr: '3',
+ numToKeepStr: '2',
+ artifactNumToKeepStr: '2'
+ ))
+ rateLimitBuilds(throttle: [count: 2, durationName: 'day', userBoost:
true])
timeout (time: 11, unit: 'HOURS')
timestamps()
skipDefaultCheckout()