@@ -276,15 +276,15 @@ if (!branch.endsWith('-ci')) {
276276 /* nonDefaultTaskSetup */ { newJob , isPR , config ->
277277 DailyBuildTaskSetup (newJob, isPR,
278278 " Windows 7 ${ config} " ,
279- ' legacy \\ s+tests' )})
279+ ' legacy7? \\ s+tests) ' )})
280280
281281 // build and test on the legacy configuration (Windows 8.1 (Blue) + VS 2015 (Dev14))
282282 CreateBuildTasks (legacyWindows8Machine, legacyWindows8MachineTag, ' daily_legacy8' , ' msbuild14' , ' -winBlue -includeSlow' , false ,
283283 /* excludeConfigIf */ { isPR , buildArch , buildType -> (buildArch == ' arm' ) },
284284 /* nonDefaultTaskSetup */ { newJob , isPR , config ->
285285 DailyBuildTaskSetup (newJob, isPR,
286286 " Windows 8 ${ config} " ,
287- ' legacy \\ s+tests' )})
287+ ' legacy8? \\ s+tests' )})
288288
289289 // build and test on the latest configuration (RS4 + VS 2017 Dev 15.7) with -includeSlow
290290 CreateBuildTasks (latestWindowsMachine, latestWindowsMachineTag, ' daily_slow' , null , ' -win10 -includeSlow' , false ,
@@ -301,6 +301,14 @@ if (!branch.endsWith('-ci')) {
301301 DailyBuildTaskSetup (newJob, isPR,
302302 " Windows ${ config} " ,
303303 ' (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' )})
304312}
305313
306314// ----------------
0 commit comments