@@ -18,7 +18,6 @@ def msbuildTypeMap = [
18
18
19
19
// convert `machine` parameter to OS component of PR task name
20
20
def machineTypeToOSTagMap = [
21
- ' Windows 7' : ' Windows 7' , // Windows Server 2008 R2, equivalent to Windows 7
22
21
' Windows_NT' : ' Windows' , // Windows Server 2012 R2, equivalent to Windows 8.1 (aka Blue)
23
22
' Ubuntu16.04' : ' Ubuntu' ,
24
23
' OSX' : ' OSX'
@@ -234,23 +233,12 @@ CreateBuildTask(true, 'x64', 'debug',
234
233
// x64_debug Lite
235
234
CreateBuildTask (true , ' x64' , ' debug' ,
236
235
' 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 )
240
236
241
237
// -----------------
242
238
// DAILY BUILD TASKS
243
239
// -----------------
244
240
245
241
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
-
254
242
// build and test on the usual configuration (VS 2015) with -includeSlow
255
243
CreateBuildTasks (' Windows_NT' , ' daily_slow' , null , ' -winBlue -includeSlow' , false ,
256
244
/* excludeConfigIf */ null ,
0 commit comments