Skip to content

Commit 40b4cb1

Browse files
Apache9Duo Zhang
authored andcommitted
HBASE-26319 Make flaky find job track more builds (#3791)
Signed-off-by: Xiaolin Ha <[email protected]>
1 parent 56b4f8c commit 40b4cb1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

dev-support/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pipeline {
2424
pollSCM('@daily')
2525
}
2626
options {
27-
buildDiscarder(logRotator(numToKeepStr: '15'))
27+
buildDiscarder(logRotator(numToKeepStr: '20'))
2828
timeout (time: 16, unit: 'HOURS')
2929
timestamps()
3030
skipDefaultCheckout()

dev-support/flaky-tests/flaky-reporting.Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ pipeline {
4343
set -x
4444
fi
4545
declare -a flaky_args
46-
flaky_args=("${flaky_args[@]}" --urls "${JENKINS_URL}/job/HBase/job/HBase%20Nightly/job/${BRANCH_NAME}" --is-yetus True --max-builds 10)
47-
flaky_args=("${flaky_args[@]}" --urls "${JENKINS_URL}/job/HBase/job/HBase-Flaky-Tests/job/${BRANCH_NAME}" --is-yetus False --max-builds 30)
46+
flaky_args=("${flaky_args[@]}" --urls "${JENKINS_URL}/job/HBase/job/HBase%20Nightly/job/${BRANCH_NAME}" --is-yetus True --max-builds 20)
47+
flaky_args=("${flaky_args[@]}" --urls "${JENKINS_URL}/job/HBase/job/HBase-Flaky-Tests/job/${BRANCH_NAME}" --is-yetus False --max-builds 50)
4848
docker build -t hbase-dev-support dev-support
4949
docker run --ulimit nproc=12500 -v "${WORKSPACE}":/hbase -u `id -u`:`id -g` --workdir=/hbase hbase-dev-support \
5050
python dev-support/flaky-tests/report-flakies.py --mvn -v -o output "${flaky_args[@]}"

dev-support/flaky-tests/run-flaky-tests.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pipeline {
2525
}
2626
options {
2727
// this should roughly match how long we tell the flaky dashboard to look at
28-
buildDiscarder(logRotator(numToKeepStr: '30'))
28+
buildDiscarder(logRotator(numToKeepStr: '50'))
2929
timeout (time: 2, unit: 'HOURS')
3030
timestamps()
3131
}

0 commit comments

Comments
 (0)