Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Moseley <danmose@microsoft.com>2017-05-09 08:32:52 +0300
committerDan Moseley <danmose@microsoft.com>2017-05-09 08:32:52 +0300
commitc6eb85832971c1b247ca383f3051256d1049fc9f (patch)
tree785deddc2f9dbf506b92a1c54137593505a49bc2 /netci.groovy
parent236c0b9f4bf194692e00c3e5e082318e9d4bbb4c (diff)
Add windows 7
Diffstat (limited to 'netci.groovy')
-rw-r--r--netci.groovy15
1 files changed, 9 insertions, 6 deletions
diff --git a/netci.groovy b/netci.groovy
index fcae705f14..6c1956fd11 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -13,13 +13,16 @@ def projectFolder = Utilities.getFolderName(project) + '/' + Utilities.getFolder
// Globals
// Map of osName -> osGroup.
-def osGroupMap = ['Ubuntu14.04':'Linux',
+def osGroupMap = ['Windows 10':'Windows_NT',
+ 'Windows 7':'Windows_NT',
+ 'Windows_NT':'Windows_NT',
+ 'Windows Nano 2016' : 'Windows_NT',
+ 'Ubuntu14.04':'Linux',
'Ubuntu16.04':'Linux',
'Ubuntu16.10':'Linux',
'Debian8.4':'Linux',
'Fedora24':'Linux',
'OSX10.12':'OSX',
- 'Windows_NT':'Windows_NT',
'CentOS7.1': 'Linux',
'OpenSUSE13.2': 'Linux',
'OpenSUSE42.1': 'Linux',
@@ -31,16 +34,16 @@ def osGroupMap = ['Ubuntu14.04':'Linux',
def osShortName = ['Windows 10': 'win10',
'Windows 7' : 'win7',
'Windows_NT' : 'windows_nt',
- 'Ubuntu14.04' : 'ubuntu14.04',
- 'OSX10.12' : 'osx',
'Windows Nano 2016' : 'winnano16',
+ 'Ubuntu14.04' : 'ubuntu14.04',
'Ubuntu16.04' : 'ubuntu16.04',
'Ubuntu16.10' : 'ubuntu16.10',
- 'CentOS7.1' : 'centos7.1',
'Debian8.4' : 'debian8.4',
+ 'Fedora24' : 'fedora24',
+ 'OSX10.12' : 'osx',
+ 'CentOS7.1' : 'centos7.1',
'OpenSUSE13.2' : 'opensuse13.2',
'OpenSUSE42.1' : 'opensuse42.1',
- 'Fedora24' : 'fedora24',
'RHEL7.2' : 'rhel7.2',
'PortableLinux' : 'portablelinux']