summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorjashook <jashoo@microsoft.com>2016-03-02 11:31:25 -0800
committerjashook <jashoo@microsoft.com>2016-03-02 11:31:25 -0800
commit69329fc32fec75f20878e123e16ebf645ddc31dd (patch)
treebdb4c95f3411b4e8b87ab3370e1b582135f6c02e /netci.groovy
parentf3902d06a64eba17de66407b854d5940107a0ff6 (diff)
downloadcoreclr-69329fc32fec75f20878e123e16ebf645ddc31dd.tar.gz
coreclr-69329fc32fec75f20878e123e16ebf645ddc31dd.tar.bz2
coreclr-69329fc32fec75f20878e123e16ebf645ddc31dd.zip
Turn off testing for arm64 for debug and checked builds.
Diffstat (limited to 'netci.groovy')
-rw-r--r--netci.groovy5
1 files changed, 4 insertions, 1 deletions
diff --git a/netci.groovy b/netci.groovy
index b743734c19..0bcfdd878d 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -797,7 +797,10 @@ combinedScenarios.each { scenario ->
case 'arm64':
assert scenario == 'default'
buildCommands += "build.cmd ${lowerConfiguration} ${architecture} skiptestbuild /toolset_dir C:\\ats"
- buildCommands += "C:\\arm64PostBuild.cmd %WORKSPACE% ${architecture} ${lowerConfiguration}"
+
+ if (lowerConfiguration == "release") {
+ buildCommands += "C:\\arm64PostBuild.cmd %WORKSPACE% ${architecture} ${lowerConfiguration}"
+ }
// Add archival. No xunit results for arm64 windows
Utilities.addArchival(newJob, "bin/Product/**")