Skip to content

Commit 8a0baef

Browse files
committed
[MERGE chakra-core#420] Fix trigger phrases to avoid overlap of individual job triggers with group triggers.
Merge pull request chakra-core#420 from dilijev:ci-phrase Fixes chakra-core#418
2 parents 1f4a97d + 873e003 commit 8a0baef

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

netci.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,21 +143,21 @@ CreateBuildTasks('Windows 7', 'daily_dev12', ' msbuild12', ' -win7',
143143
/* nonDefaultTaskSetup */ { newJob, isPR, config ->
144144
DailyBuildTaskSetup(newJob, isPR,
145145
"Windows 7 ${config}",
146-
'(win(dows)?\\s*7|(dev|msbuild)\\s*12)')})
146+
'legacy\\s+tests')})
147147

148148
// build and test on the usual configuration (VS 2015) with -includeSlow
149149
CreateBuildTasks('Windows_NT', 'daily_slow', null, ' -includeSlow', null,
150150
/* nonDefaultTaskSetup */ { newJob, isPR, config ->
151151
DailyBuildTaskSetup(newJob, isPR,
152152
"Windows ${config}",
153-
'(slow\\s*(tests)?)')})
153+
'slow\\s+tests')})
154154

155155
// build and test on the usual configuration (VS 2015) with JIT disabled
156156
CreateBuildTasks('Windows_NT', 'daily_disablejit', ' "/p:BuildJIT=false"', ' -disablejit', null,
157157
/* nonDefaultTaskSetup */ { newJob, isPR, config ->
158158
DailyBuildTaskSetup(newJob, isPR,
159159
"Windows ${config}",
160-
'(disablejit|nojit)')})
160+
'(disablejit|nojit)\\s+tests')})
161161

162162
// ----------------
163163
// CODE STYLE TASKS

0 commit comments

Comments
 (0)