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:
authorJose Perez Rodriguez <joperezr@microsoft.com>2016-11-15 00:18:15 +0300
committerJose Perez Rodriguez <joperezr@microsoft.com>2016-11-15 00:53:19 +0300
commit3878be1f7f72232775a089345539ba882c2e7eb1 (patch)
tree90883d0808a69b28d86d022d9e5e89efa8596ab6 /netci.groovy
parent8bdf055fa5974a0c43bce3182239bde00b440e99 (diff)
Adding x86 CI build and test run.
Diffstat (limited to 'netci.groovy')
-rw-r--r--netci.groovy7
1 files changed, 6 insertions, 1 deletions
diff --git a/netci.groovy b/netci.groovy
index 1c177bc600..372efc9df2 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -56,6 +56,11 @@ def osShortName = ['Windows 10': 'win10',
'Fedora24' : 'fedora24',
'RHEL7.2' : 'rhel7.2']
+def buildArchConfiguration = ['Debug': 'x86',
+ 'Release': 'x64']
+
+def testNugetRuntimeIdConfiguration = ['Debug': 'win7-x86',
+ 'Release': 'win7-x64']
// **************************
// Define code coverage build
// **************************
@@ -359,7 +364,7 @@ def osShortName = ['Windows 10': 'win10',
// On Windows we use the packer to put together everything. On *nix we use tar
steps {
if (osName == 'Windows 10' || osName == 'Windows 7' || osName == 'Windows_NT') {
- batchFile("call \"C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat\" x86 && build.cmd -${configurationGroup} -os=${osGroup} -- /p:WithoutCategories=IgnoreForCI")
+ batchFile("call \"C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat\" x86 && build.cmd -${configurationGroup} -os:${osGroup} -buildArch:${buildArchConfiguration[configurationGroup]} -TestNugetRuntimeId:${testNugetRuntimeIdConfiguration[configurationGroup]} -- /p:WithoutCategories=IgnoreForCI")
batchFile("C:\\Packer\\Packer.exe .\\bin\\build.pack .\\bin")
}
else {