Skip to content

Commit 688b01a

Browse files
authored
Modify weeknights schedule on Jenkins
Limit the number of builds.
1 parent 6da341e commit 688b01a

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

Jenkinsfile

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,8 @@ pipeline {
304304

305305
triggers {
306306
parameterizedCron(branchPatternCron.matcher(env.BRANCH_NAME).matches() ? """
307-
# Every weeknight (Monday - Friday) around 3:00 AM
308-
H 3 * * 1-5 %CI_SCHEDULE=WEEKNIGHTS
307+
# Every weeknight (Monday - Friday) around 7 PM
308+
H 19 * * 1-5 %CI_SCHEDULE=WEEKNIGHTS
309309
""" : "")
310310
}
311311

@@ -347,6 +347,7 @@ pipeline {
347347
values '8', '10', '12'
348348
}
349349
}
350+
350351
excludes {
351352
exclude {
352353
axis {
@@ -481,6 +482,19 @@ pipeline {
481482
}
482483
}
483484

485+
excludes {
486+
exclude {
487+
axis {
488+
name 'NODEJS_VERSION'
489+
values '10'
490+
}
491+
axis {
492+
name 'CASSANDRA_VERSION'
493+
values '2.1', '3.11', '4.0', 'dse-5.1', 'dse-6.0', 'dse-6.7'
494+
}
495+
}
496+
}
497+
484498
agent {
485499
label "${OS_VERSION}"
486500
}

0 commit comments

Comments
 (0)