diff options
| author | JakobL-MSFT <[email protected]> | 2023-11-24 13:52:42 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-11-24 13:52:42 -0800 |
| commit | 143f6fd89ace1ea410ba3dac38478114a62ba867 (patch) | |
| tree | 64da95d97a5f11b07d14a4af20211a6b39182b6f /Build-SampleSet.ps1 | |
| parent | 00d6f86f2aa7fccb7cdd16045d0abfbe1cfa0aed (diff) | |
This change will ensure failures from build script will be sorted for easier review. (#1054)
sort-failures
Diffstat (limited to 'Build-SampleSet.ps1')
| -rw-r--r-- | Build-SampleSet.ps1 | 1 |
1 files changed, 1 insertions, 0 deletions
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] |
