Skip to content

Commit e3f57b5

Browse files
committed
Switch main job to run with a cron trigger
Signed-off-by: marko-bekhta <[email protected]>
1 parent 3e93ba3 commit e3f57b5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Jenkinsfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,9 @@ stage('Configure') {
161161
pipelineTriggers(
162162
// HSEARCH-3417: do not add snapshotDependencies() here, this was known to cause problems.
163163
[
164-
issueCommentTrigger('.*test this please.*')
164+
issueCommentTrigger('.*test this please.*'),
165+
// Run every week @ 01:00 on Saturday
166+
cron('0 1 * * 6')
165167
]
166168
+ helper.generateUpstreamTriggers()
167169
),
@@ -184,7 +186,7 @@ while other options will trigger multiple Maven executions in different environm
184186
trim: true,
185187
description: """A regex filter to apply to the environments that must be checked.
186188
If this parameter is non-empty, ENVIRONMENT_SET will be ignored and environments whose tag matches the given regex will be checked.
187-
Some useful filters: 'default', 'jdk', 'jdk-10', 'eclipse'.
189+
Some useful filters: 'default', 'jdk', 'jdk-10'.
188190
"""
189191
)
190192
])

0 commit comments

Comments
 (0)