From 143f6fd89ace1ea410ba3dac38478114a62ba867 Mon Sep 17 00:00:00 2001 From: JakobL-MSFT <110699333+JakobL-MSFT@users.noreply.github.com> Date: Fri, 24 Nov 2023 13:52:42 -0800 Subject: This change will ensure failures from build script will be sorted for easier review. (#1054) sort-failures --- Build-SampleSet.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/Build-SampleSet.ps1 b/Build-SampleSet.ps1 index a776af3a..e89f3d10 100644 --- a/Build-SampleSet.ps1 +++ b/Build-SampleSet.ps1 @@ -178,6 +178,7 @@ $sw.Stop() if ($jresult.FailSet.Count -gt 0) { Write-Output "Some combinations were built with errors:" + $jresult.FailSet = $jresult.FailSet | Sort-Object foreach ($failedSample in $jresult.FailSet) { $failedSample -match "^(.*) (\w*)\|(\w*)$" | Out-Null $failName = $Matches[1] -- cgit v1.3.1