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:
authorLakshmi Priya Sekar <lasekar@microsoft.com>2016-04-27 00:13:50 +0300
committerLakshmi Priya Sekar <lasekar@microsoft.com>2016-04-28 23:56:27 +0300
commit828376c310837f9133ad012b4678a35d8289d5d4 (patch)
treec60944b53a4f630fc0be7d5be171eee28904eb69 /netci.groovy
parentf01ee46c109b4339f8488ebd05f46235a33f1f24 (diff)
Add Ubuntu16.04 support.
Diffstat (limited to 'netci.groovy')
-rw-r--r--netci.groovy10
1 files changed, 5 insertions, 5 deletions
diff --git a/netci.groovy b/netci.groovy
index 567670b054..b58f951bd2 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -14,7 +14,7 @@ def projectFolder = Utilities.getFolderName(project) + '/' + Utilities.getFolder
// Map of os -> osGroup.
def osGroupMap = ['Ubuntu14.04':'Linux',
- 'Ubuntu15.10':'Linux',
+ 'Ubuntu16.04':'Linux',
'Debian8.2':'Linux',
'OSX':'OSX',
'Windows_NT':'Windows_NT',
@@ -24,7 +24,7 @@ def osGroupMap = ['Ubuntu14.04':'Linux',
// Map of os -> nuget runtime
def targetNugetRuntimeMap = ['OSX' : 'osx.10.10-x64',
'Ubuntu14.04' : 'ubuntu.14.04-x64',
- 'Ubuntu15.10' : 'ubuntu.14.04-x64',
+ 'Ubuntu16.04' : 'ubuntu.14.04-x64',
'Debian8.2' : 'ubuntu.14.04-x64',
'CentOS7.1' : 'centos.7-x64',
'OpenSUSE13.2' : 'ubuntu.14.04-x64',
@@ -36,7 +36,7 @@ def osShortName = ['Windows 10': 'win10',
'Ubuntu14.04' : 'ubuntu14.04',
'OSX' : 'osx',
'Windows Nano' : 'winnano',
- 'Ubuntu15.10' : 'ubuntu15.10',
+ 'Ubuntu16.04' : 'ubuntu16.04',
'CentOS7.1' : 'centos7.1',
'OpenSUSE13.2' : 'opensuse13.2',
'RHEL7.2' : 'rhel7.2']
@@ -200,7 +200,7 @@ def osShortName = ['Windows 10': 'win10',
// **************************
// Define outerloop testing for linux OSes that can't build. Run locally on each machine.
// **************************
-def outerloopLinuxOSes = ['Ubuntu15.10', 'CentOS7.1', 'OpenSUSE13.2', 'RHEL7.2']
+def outerloopLinuxOSes = ['Ubuntu16.04', 'CentOS7.1', 'OpenSUSE13.2', 'RHEL7.2']
[true, false].each { isPR ->
['Debug', 'Release'].each { configurationGroup ->
outerloopLinuxOSes.each { os ->
@@ -464,7 +464,7 @@ def static addCopyCoreClrAndRunTestSteps(def job, def coreclrBranch, String os,
// and then a build for the test of corefx on the target platform. Then we link them with a build
// flow job.
-def innerLoopNonWindowsOSs = ['Ubuntu15.10', 'Debian8.2', 'CentOS7.1', 'OpenSUSE13.2', 'RHEL7.2']
+def innerLoopNonWindowsOSs = ['Ubuntu16.04', 'Debian8.2', 'CentOS7.1', 'OpenSUSE13.2', 'RHEL7.2']
[true, false].each { isPR ->
['Debug', 'Release'].each { configurationGroup ->
innerLoopNonWindowsOSs.each { os ->