Skip to content

Commit d24e902

Browse files
Remove Dev12 CI Builds
With the removal of Dev12 (VS 2013) support, we no longer need (nor want) Dev12 builds in CI.
1 parent 9ef177d commit d24e902

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

netci.groovy

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ def msbuildTypeMap = [
1818

1919
// convert `machine` parameter to OS component of PR task name
2020
def machineTypeToOSTagMap = [
21-
'Windows 7': 'Windows 7', // Windows Server 2008 R2, equivalent to Windows 7
2221
'Windows_NT': 'Windows', // Windows Server 2012 R2, equivalent to Windows 8.1 (aka Blue)
2322
'Ubuntu16.04': 'Ubuntu',
2423
'OSX': 'OSX'
@@ -234,23 +233,12 @@ CreateBuildTask(true, 'x64', 'debug',
234233
// x64_debug Lite
235234
CreateBuildTask(true, 'x64', 'debug',
236235
'Windows_NT', 'ci_lite', '"/p:BuildLite=true"', '-winBlue -lite', false, null, null)
237-
// x64_debug Legacy
238-
CreateBuildTask(true, 'x64', 'debug',
239-
'Windows 7', 'ci_dev12', 'msbuild12', '-win7 -includeSlow', false, null, null)
240236

241237
// -----------------
242238
// DAILY BUILD TASKS
243239
// -----------------
244240

245241
if (!branch.endsWith('-ci')) {
246-
// build and test on Windows 7 with VS 2013 (Dev12/MsBuild12)
247-
CreateBuildTasks('Windows 7', 'daily_dev12', 'msbuild12', '-win7 -includeSlow', false,
248-
/* excludeConfigIf */ { isPR, buildArch, buildType -> (buildArch == 'arm') },
249-
/* nonDefaultTaskSetup */ { newJob, isPR, config ->
250-
DailyBuildTaskSetup(newJob, isPR,
251-
"Windows 7 ${config}",
252-
'(dev12|legacy)\\s+tests')})
253-
254242
// build and test on the usual configuration (VS 2015) with -includeSlow
255243
CreateBuildTasks('Windows_NT', 'daily_slow', null, '-winBlue -includeSlow', false,
256244
/* excludeConfigIf */ null,

0 commit comments

Comments
 (0)