@@ -276,15 +276,15 @@ if (!branch.endsWith('-ci')) {
276
276
/* nonDefaultTaskSetup */ { newJob , isPR , config ->
277
277
DailyBuildTaskSetup (newJob, isPR,
278
278
" Windows 7 ${ config} " ,
279
- ' legacy \\ s+tests' )})
279
+ ' legacy7? \\ s+tests) ' )})
280
280
281
281
// build and test on the legacy configuration (Windows 8.1 (Blue) + VS 2015 (Dev14))
282
282
CreateBuildTasks (legacyWindows8Machine, legacyWindows8MachineTag, ' daily_legacy8' , ' msbuild14' , ' -winBlue -includeSlow' , false ,
283
283
/* excludeConfigIf */ { isPR , buildArch , buildType -> (buildArch == ' arm' ) },
284
284
/* nonDefaultTaskSetup */ { newJob , isPR , config ->
285
285
DailyBuildTaskSetup (newJob, isPR,
286
286
" Windows 8 ${ config} " ,
287
- ' legacy \\ s+tests' )})
287
+ ' legacy8? \\ s+tests' )})
288
288
289
289
// build and test on the latest configuration (RS4 + VS 2017 Dev 15.7) with -includeSlow
290
290
CreateBuildTasks (latestWindowsMachine, latestWindowsMachineTag, ' daily_slow' , null , ' -win10 -includeSlow' , false ,
@@ -301,6 +301,14 @@ if (!branch.endsWith('-ci')) {
301
301
DailyBuildTaskSetup (newJob, isPR,
302
302
" Windows ${ config} " ,
303
303
' (disablejit|nojit)\\ s+tests' )})
304
+
305
+ // build and test on the latest configuration (RS4 + VS 2017 Dev 15.7) with Lite build
306
+ CreateBuildTasks (latestWindowsMachine, latestWindowsMachineTag, ' daily_lite' , ' "/p:BuildLite=true"' , ' -win10 -lite' , true ,
307
+ /* excludeConfigIf */ null ,
308
+ /* nonDefaultTaskSetup */ { newJob , isPR , config ->
309
+ DailyBuildTaskSetup (newJob, isPR,
310
+ " Windows ${ config} " ,
311
+ ' lite\\ s+tests' )})
304
312
}
305
313
306
314
// ----------------
0 commit comments