You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: eng/common/scripts/job-matrix/Create-PrJobMatrix.ps1
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -144,6 +144,16 @@ function GeneratePRMatrixForBatch {
144
144
}
145
145
}
146
146
147
+
if ($matrixConfig.PSObject.Properties['PRBatching']) {
148
+
# if we are doing a PR Batch, we need to just add the matrix items directly to the OverallResult
149
+
# as the users have explicitly disabled PR batching for this matrix.
150
+
if (!$matrixConfig.PRBatching) {
151
+
Write-Host"The matrix config $($matrixConfig.Path) with name $($matrixConfig.Name) has PRBatch set to false, the matrix members will be directly added without batching by $PRMatrixSetting."
0 commit comments