This is an automated email from the ASF dual-hosted git repository.
sanjeet006py pushed a commit to branch 5.2
in repository https://gitbox.apache.org/repos/asf/phoenix.git
The following commit(s) were added to refs/heads/5.2 by this push:
new 5aea4d504a PHOENIX-7850: Unblock Phoenix PR validation builds (#2471)
(#2473)
5aea4d504a is described below
commit 5aea4d504add4962543b6586e89516e8335facc1
Author: sanjeet006py <[email protected]>
AuthorDate: Wed May 13 16:03:29 2026 +0530
PHOENIX-7850: Unblock Phoenix PR validation builds (#2471) (#2473)
(cherry picked from commit 78d91e074b73314caef695ad88801c93e212be68)
---
Jenkinsfile.github | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/Jenkinsfile.github b/Jenkinsfile.github
index cf7bd9f4fc..8e77ddca22 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: 9, unit: 'HOURS')
timestamps()
skipDefaultCheckout()