Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
in the case where it's all the same matrix (so no batches), not addin…
…g a suffix for the indirect batch causes duplicate config names, so the indirect batch is ignored entirely
  • Loading branch information
scbedd authored and azure-sdk committed Jan 16, 2025
commit 487074480e6759422be2063b98c63f61babcf90c
2 changes: 1 addition & 1 deletion eng/common/scripts/job-matrix/Create-PrJobMatrix.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ function GeneratePRMatrixForBatch {
# we instead will walk each each matrix, create a parameter named for the PRMatrixSetting, and add the targeted packages
# as an array. This will generate a _sparse_ matrix for for whatever the incoming packages are
else {
$batchSuffixNecessary = $packageBatches.Length -gt 1
$batchSuffixNecessary = $packageBatches.Length -gt 0
$batchCounter = 1
foreach ($batch in $packageBatches) {
$namesForBatch = ($batch | ForEach-Object { $_.ArtifactName }) -join ","
Expand Down
Loading