Skip to content

Commit 78c8982

Browse files
committed
Change the riptano repo pattern match string
1 parent 448a879 commit 78c8982

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ def describeAdhocTestingStage() {
361361
}
362362

363363
def branchPatternCron = ~"(master)"
364-
def repoPatternCron = ~"^(riptano)"
364+
def riptanoPatternCron = ~"(riptano)"
365365

366366
pipeline {
367367
agent none
@@ -552,7 +552,7 @@ pipeline {
552552
}
553553

554554
triggers {
555-
parameterizedCron(branchPatternCron.matcher(env.BRANCH_NAME).matches() && repoPatternCron.matcher(env.GIT_URL).matches() ? """
555+
parameterizedCron(branchPatternCron.matcher(env.BRANCH_NAME).matches() && !riptanoPatternCron.matcher(env.GIT_URL).find() ? """
556556
# Every weeknight (Monday - Friday) around 4:00 AM
557557
# These schedules will run with and without Cython enabled for Python v2.7.14 and v3.5.6
558558
H 4 * * 1-5 %CI_SCHEDULE=WEEKNIGHTS;EVENT_LOOP_MANAGER=LIBEV;CI_SCHEDULE_PYTHON_VERSION=2.7.14;CI_SCHEDULE_SERVER_VERSION=2.2 3.11 dse-5.1 dse-6.0 dse-6.7

0 commit comments

Comments
 (0)