diff options
author | Jarret Shook <jashoo@microsoft.com> | 2017-11-09 13:09:18 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-09 13:09:18 -0800 |
commit | 82313837846b6ae7a67eab99a5588845e5908542 (patch) | |
tree | dfddb101ef23ceaaabd855a760eaa039b1708339 | |
parent | 1425fce20c6c218372e33f4b2156dc7a01f79283 (diff) | |
parent | c489a936369e677fa4fc072f0d52465703bf16e1 (diff) | |
download | coreclr-82313837846b6ae7a67eab99a5588845e5908542.tar.gz coreclr-82313837846b6ae7a67eab99a5588845e5908542.tar.bz2 coreclr-82313837846b6ae7a67eab99a5588845e5908542.zip |
Merge pull request #14967 from jashook/small_netci_fixes
Fix arm(64) jobs
-rwxr-xr-x | netci.groovy | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/netci.groovy b/netci.groovy index 174bfd2453..31d0b840a8 100755 --- a/netci.groovy +++ b/netci.groovy @@ -1798,7 +1798,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR // Zip up the tests directory so that we don't use so much space/time copying // 10s of thousands of files around. - buildCommands += "powershell -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${architecture}.${configuration}', '.\\bin\\tests\\tests.zip')\""; + buildCommands += "powershell -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('.\\bin\\tests\\${osGroup}.${buildArchitecture}.${configuration}', '.\\bin\\tests\\tests.zip')\""; // Add archival. Utilities.addArchival(newJob, "bin/Product/**,bin/tests/tests.zip", "bin/Product/**/.nuget/**") @@ -2803,6 +2803,10 @@ combinedScenarios.each { scenario -> addArchSpecificExclude(architecture, excludeTag) } + else { + addExclude("pri1") + } + smartyCommand += "/lstFile Tests.lst" def testListArch = [ @@ -2860,7 +2864,7 @@ combinedScenarios.each { scenario -> Utilities.addXUnitDotNETResults(newJob, '**/coreclrtests.xml') } else { - Utilities.addArchival(newJob, "bin/tests/${osGroup}.${architecture}.${configuration}/Smarty.Run.0/*.smrt") + Utilities.addArchival(newJob, "bin/tests/${osGroup}.${architecture}.${configuration}/Smarty.Run.0/*.smrt", '', true, false) } // Create a build flow to join together the build and tests required to run this |