From ee641404e69324ece1afe0bb9c2322bc2fe043ee Mon Sep 17 00:00:00 2001 From: Nick Randolph Date: Wed, 26 Jul 2023 02:42:06 +1000 Subject: [PATCH] chore: Switching order of workload installs --- build/ci/templates/dotnet-install-windows.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build/ci/templates/dotnet-install-windows.yml b/build/ci/templates/dotnet-install-windows.yml index 77e0be2ab8..631dc0ebd7 100644 --- a/build/ci/templates/dotnet-install-windows.yml +++ b/build/ci/templates/dotnet-install-windows.yml @@ -25,11 +25,6 @@ steps: - template: jdk-setup.yml - - powershell: | - dotnet workload install maui --source https://api.nuget.org/v3/index.json - dotnet workload install android ios maccatalyst tvos macos maui wasm-tools --source https://api.nuget.org/v3/index.json - displayName: Maui workloads - - powershell: | & dotnet tool update --global uno.check --version ${{ parameters.UnoCheck_Version }} --add-source https://api.nuget.org/v3/index.json & uno-check -v --ci --non-interactive --fix --skip xcode --skip gtk3 --skip vswin --skip vsmac --skip androidsdk --skip androidemulator --manifest ${{ parameters.UnoCheck_Manifest }} @@ -37,3 +32,8 @@ steps: errorActionPreference: continue ignoreLASTEXITCODE: true retryCountOnTaskFailure: 3 + + - powershell: | + dotnet workload install maui --source https://api.nuget.org/v3/index.json + dotnet workload install android ios maccatalyst tvos macos maui wasm-tools --source https://api.nuget.org/v3/index.json + displayName: Maui workloads