From 682b5aa7970df147287027c5460adf677284bfb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Laban?= Date: Tue, 10 Sep 2024 20:33:21 -0400 Subject: [PATCH] chore: Disable net9 tests --- build/.azure-pipelines.TemplateValidation.yml | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/build/.azure-pipelines.TemplateValidation.yml b/build/.azure-pipelines.TemplateValidation.yml index c14cf1d3..82aee986 100644 --- a/build/.azure-pipelines.TemplateValidation.yml +++ b/build/.azure-pipelines.TemplateValidation.yml @@ -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