}
// 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"
--${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"""
def WindowTestsName = projectFolder + '/' +
Utilities.getFullJobName(project,
getJobName(lowerConfiguration,
- 'x64' ,
+ 'x86' ,
'windows_nt',
'default',
true),
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)
}