This is an automated email from the ASF dual-hosted git repository. zhangduo pushed a commit to branch HBASE-29880 in repository https://gitbox.apache.org/repos/asf/hbase.git
commit e1c96b03d7660fc0b4da13019a8f6107f604e297 Author: Duo Zhang <[email protected]> AuthorDate: Tue Feb 10 18:38:39 2026 +0800 HBASE-29880 Make flaky tests job cron expression configurable on jenkins page --- dev-support/flaky-tests/run-flaky-tests.Jenkinsfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile b/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile index 02a2daeacf5..7616bb36562 100644 --- a/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile +++ b/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile @@ -14,6 +14,13 @@ // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. +properties([ + parameters([ + string(name: 'CRON_EXPRESSION', defaultValue: 'H H/12 * * *', + description: 'Cron expression for periodic builds. See https://jenkins.io/doc/book/pipeline/syntax/#cron-syntax') + ]) +]) + pipeline { agent { dockerfile { @@ -23,7 +30,7 @@ pipeline { } } triggers { - cron('H H/12 * * *') // See https://jenkins.io/doc/book/pipeline/syntax/#cron-syntax + cron("${params.CRON_EXPRESSION ?: 'H H/12 * * *'}") } options { // this should roughly match how long we tell the flaky dashboard to look at
