Skip to content

Commit 40aa6f9

Browse files
committed
Due to machine config issue, build ARM on Legacy Windows 8.1
1 parent 7ea3fce commit 40aa6f9

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

netci.groovy

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,13 @@ def CreateStyleCheckTasks = { taskString, taskName, checkName ->
240240
// INNER LOOP TASKS
241241
// ----------------
242242

243-
CreateBuildTasks(latestWindowsMachine, latestWindowsMachineTag, null, null, "-win10", true, null, null)
243+
// The latest machine seems to have a configuration problem preventing us from building ARM.
244+
// For now, build ARM on the LKG config, Legacy Windows 8.1 (Blue) config.
245+
// TODO When the configuration is updated, unify this config split.
246+
CreateBuildTasks(latestWindowsMachine, latestWindowsMachineTag, null, null, "-win10", true,
247+
/* excludeConfigIf */ { isPR, buildArch, buildType -> (buildArch == 'arm') }, null)
248+
CreateBuildTasks(legacyWindows8Machine, legacyWindows8MachineTag, null, null, "-winBlue", true,
249+
/* excludeConfigIf */ { isPR, buildArch, buildType -> (buildArch != 'arm') }, null)
244250

245251
// Add some additional daily configs to trigger per-PR as a quality gate:
246252
// x64_debug Slow Tests

0 commit comments

Comments
 (0)