Skip to content

Commit

Permalink
chore: Disable net9 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban authored Sep 11, 2024
1 parent ada43b2 commit 682b5aa
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions build/.azure-pipelines.TemplateValidation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,19 +86,21 @@ jobs:
}
}
# Disabled until net9-rc1 is supported by the uno wasm bootstrapper
#
# generate matrix for net9
for ($i = 0; $i -lt $tests.Count; $i++)
{
$currentGroup += $tests[$i] + " -tfm net9.0";
if ($currentGroup.Count -eq $groupSize) {
$matrixGroups["Group$($matrixGroups.Count)_net9"] = @{
'unocheckArguments' = '--pre-major'
'validations' = $currentGroup -join "`r`n"
};
$currentGroup = @()
}
}
# for ($i = 0; $i -lt $tests.Count; $i++)
# {
# $currentGroup += $tests[$i] + " -tfm net9.0";
#
# if ($currentGroup.Count -eq $groupSize) {
# $matrixGroups["Group$($matrixGroups.Count)_net9"] = @{
# 'unocheckArguments' = '--pre-major'
# 'validations' = $currentGroup -join "`r`n"
# };
# $currentGroup = @()
# }
# }
$matrixAsJson = $matrixGroups | ConvertTo-Json -Compress
Expand Down

0 comments on commit 682b5aa

Please sign in to comment.