Skip to content

Commit

Permalink
Merge pull request dotnet#14967 from jashook/small_netci_fixes
Browse files Browse the repository at this point in the history
Fix arm(64) jobs
  • Loading branch information
Jarret Shook authored Nov 9, 2017
2 parents 1425fce + c489a93 commit 8231383
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions netci.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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/**")
Expand Down Expand Up @@ -2803,6 +2803,10 @@ combinedScenarios.each { scenario ->
addArchSpecificExclude(architecture, excludeTag)
}

else {
addExclude("pri1")
}

smartyCommand += "/lstFile Tests.lst"

def testListArch = [
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8231383

Please sign in to comment.