This is an automated email from the ASF dual-hosted git repository.
virajjasani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/phoenix.git
The following commit(s) were added to refs/heads/master by this push:
new 78d91e074b PHOENIX-7850: Unblock Phoenix PR validation builds (#2471)
78d91e074b is described below
commit 78d91e074b73314caef695ad88801c93e212be68
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()