From 41be8e7f008f436b2bbbd3c72086a569992aa36d Mon Sep 17 00:00:00 2001 From: Hyeongseok Oh Date: Wed, 26 Apr 2017 15:44:16 +0900 Subject: [PATCH] [ARM32/Linux] Copy tests.zip only for CI test and use x86 unittest - Copy tests.zip only from x86 Windows build for CI test - Use x86 unittest instead of x64: 32bit architecture Commit migrated from https://github.com/dotnet/coreclr/commit/2ec8b5c2cc6d68ca02eb743e679997a8f11c90aa --- src/coreclr/netci.groovy | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index 94d7ad5..c7734a9 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -1634,7 +1634,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR } // Unzip the Windows test binaries first. Exit with 0 - buildCommands += "unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.x64.${configuration} || exit 0" + buildCommands += "unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.x86.${configuration} || exit 0" // Unpack the corefx binaries buildCommands += "mkdir ./bin/CoreFxBinDir" @@ -1654,7 +1654,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR --${arm_abi} \\ --linuxCodeName=${linuxCodeName} \\ --buildConfig=${lowerConfiguration} \\ - --testRootDir=./bin/tests/Windows_NT.x64.${configuration} \\ + --testRootDir=./bin/tests/Windows_NT.x86.${configuration} \\ --coreFxBinDir=./bin/CoreFxBinDir \\ --testDirFile=./tests/testsRunningInsideARM.txt""" @@ -1963,7 +1963,7 @@ combinedScenarios.each { scenario -> def WindowTestsName = projectFolder + '/' + Utilities.getFullJobName(project, getJobName(lowerConfiguration, - 'x64' , + 'x86' , 'windows_nt', 'default', true), @@ -1971,9 +1971,9 @@ combinedScenarios.each { scenario -> def corefxFolder = Utilities.getFolderName('dotnet/corefx') + '/' + Utilities.getFolderName(branch) - // Copy the Windows test binaries and the Corefx build binaries + // Copy the Windows test binaries copyArtifacts(WindowTestsName) { - excludePatterns('**/testResults.xml', '**/*.ni.dll') + includePatterns('bin/tests/tests.zip') buildSelector { latestSuccessful(true) } -- 2.7.4