From f3b99cc7d1b85fe9b1472644328edbc0857cbf31 Mon Sep 17 00:00:00 2001 From: jashook Date: Tue, 15 Mar 2016 19:24:17 -0700 Subject: [PATCH] Remove release only check. Allows debug and checked builds to run tests on arm64 machines. --- netci.groovy | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/netci.groovy b/netci.groovy index 89d5f0b..416e8de 100644 --- a/netci.groovy +++ b/netci.groovy @@ -965,9 +965,7 @@ combinedScenarios.each { scenario -> assert scenario == 'default' buildCommands += "set __TestIntermediateDir=int&&build.cmd ${lowerConfiguration} ${architecture} /toolset_dir C:\\ats" - if (lowerConfiguration == "release") { - buildCommands += "C:\\arm64PostBuild.cmd %WORKSPACE% ${architecture} ${lowerConfiguration}" - } + buildCommands += "C:\\arm64PostBuild.cmd %WORKSPACE% ${architecture} ${lowerConfiguration}" // Add archival. No xunit results for arm64 windows Utilities.addArchival(newJob, "bin/Product/**") @@ -1275,4 +1273,4 @@ build(params + [CORECLR_BUILD: coreclrBuildJob.build.number, } // os } // architecture } // isPR -} // scenario \ No newline at end of file +} // scenario -- 2.7.4