From 2fff136a451d06f1e101d4a8d9b980b4b1571f0d Mon Sep 17 00:00:00 2001 From: Arlo Date: Tue, 12 May 2026 23:35:28 -0500 Subject: [PATCH 1/8] Bumped tooling pointer to latest PR draft --- tooling | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooling b/tooling index 394263e1..839fa23e 160000 --- a/tooling +++ b/tooling @@ -1 +1 @@ -Subproject commit 394263e1054cac12c5feb49ae2458f5e13681a68 +Subproject commit 839fa23e4820bb14a3d1858fd529b63a6ad5afdb From 94d5d38faa4e0695ae43d7a15cda28cd1bbb06f1 Mon Sep 17 00:00:00 2001 From: Arlo Date: Tue, 12 May 2026 23:39:17 -0500 Subject: [PATCH 2/8] Bumped runner to windows-2025 and added build step for Windows SDK installation --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ac1135b0..1cb5f741 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,7 @@ env: jobs: # This workflow contains a single job called "Xaml-Style-Check" Xaml-Style-Check: - runs-on: windows-2022 + runs-on: windows-2025 # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -125,6 +125,10 @@ jobs: --skip vswin --verbose + - name: Install Windows SDKs + shell: pwsh + run: ./tooling/Install-WindowsSdk.ps1 + - name: Add msbuild to PATH uses: microsoft/setup-msbuild@v2 with: From 5380d2960173f5dece9e4343257c2d04b5f3ba61 Mon Sep 17 00:00:00 2001 From: Arlo Date: Wed, 13 May 2026 16:50:53 -0500 Subject: [PATCH 3/8] Updated tooling to latest main --- tooling | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooling b/tooling index 839fa23e..5ebeaabe 160000 --- a/tooling +++ b/tooling @@ -1 +1 @@ -Subproject commit 839fa23e4820bb14a3d1858fd529b63a6ad5afdb +Subproject commit 5ebeaabeccc7a1d157ab40b784686a8758d15766 From 91145f62cd42340d0e956f0a64df13c6bf60b0d4 Mon Sep 17 00:00:00 2001 From: Arlo Date: Fri, 15 May 2026 05:55:41 -0500 Subject: [PATCH 4/8] Migrate remaining mentions of windows-2022 to windows-2025 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1cb5f741..17edde67 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,7 +57,7 @@ jobs: # Build both Uno.UI/WinUI2/UWP and Uno.WinUI/WinUI3/WindowsAppSDK versions of our packages using a matrix build: needs: [Xaml-Style-Check] - runs-on: windows-2022 + runs-on: windows-2025 env: PROCDUMP_PATH: ${{ github.workspace }} @@ -222,7 +222,7 @@ jobs: dotnet-dump analyze ${{ steps.detect-dump.outputs.DUMP_FILE }} -c "clrstack" -c "pe -lines" -c "exit" package: - runs-on: windows-2022 + runs-on: windows-2025 needs: [build] strategy: fail-fast: false # prevent one matrix pipeline from being cancelled if one fails, we want them all to run to completion. @@ -334,7 +334,7 @@ jobs: sign: needs: [package] if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/rel/') }} - runs-on: windows-2022 + runs-on: windows-2025 permissions: id-token: write # Required for requesting the JWT From 147b06e99070fc391ec5bbe7342d821d3969a26f Mon Sep 17 00:00:00 2001 From: Arlo Date: Fri, 15 May 2026 06:33:38 -0500 Subject: [PATCH 5/8] Upgraded to large runners per https://github.com/CommunityToolkit/Windows/pull/737/ --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 17edde67..633856e9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,7 @@ env: jobs: # This workflow contains a single job called "Xaml-Style-Check" Xaml-Style-Check: - runs-on: windows-2025 + runs-on: windows-2025-large # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -57,7 +57,7 @@ jobs: # Build both Uno.UI/WinUI2/UWP and Uno.WinUI/WinUI3/WindowsAppSDK versions of our packages using a matrix build: needs: [Xaml-Style-Check] - runs-on: windows-2025 + runs-on: windows-2025-large env: PROCDUMP_PATH: ${{ github.workspace }} @@ -222,7 +222,7 @@ jobs: dotnet-dump analyze ${{ steps.detect-dump.outputs.DUMP_FILE }} -c "clrstack" -c "pe -lines" -c "exit" package: - runs-on: windows-2025 + runs-on: windows-2025-large needs: [build] strategy: fail-fast: false # prevent one matrix pipeline from being cancelled if one fails, we want them all to run to completion. @@ -334,7 +334,7 @@ jobs: sign: needs: [package] if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/rel/') }} - runs-on: windows-2025 + runs-on: windows-2025-large permissions: id-token: write # Required for requesting the JWT From 3964cda9621c94f273022d9aad25b82dae3feb00 Mon Sep 17 00:00:00 2001 From: Arlo Date: Fri, 15 May 2026 06:52:11 -0500 Subject: [PATCH 6/8] Use non-'large' runner for Xaml-Style-Check job --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 633856e9..6fd5ee91 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,7 @@ env: jobs: # This workflow contains a single job called "Xaml-Style-Check" Xaml-Style-Check: - runs-on: windows-2025-large + runs-on: windows-2025 # Steps represent a sequence of tasks that will be executed as part of the job steps: From aa305f080ed0e7dba14283ce8b34719a52ac0488 Mon Sep 17 00:00:00 2001 From: Arlo Date: Fri, 15 May 2026 07:00:09 -0500 Subject: [PATCH 7/8] Use 'windows-latest-large' until 'windows-2025-large' is available --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6fd5ee91..cc552372 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,7 +57,7 @@ jobs: # Build both Uno.UI/WinUI2/UWP and Uno.WinUI/WinUI3/WindowsAppSDK versions of our packages using a matrix build: needs: [Xaml-Style-Check] - runs-on: windows-2025-large + runs-on: windows-latest-large env: PROCDUMP_PATH: ${{ github.workspace }} @@ -222,7 +222,7 @@ jobs: dotnet-dump analyze ${{ steps.detect-dump.outputs.DUMP_FILE }} -c "clrstack" -c "pe -lines" -c "exit" package: - runs-on: windows-2025-large + runs-on: windows-latest-large needs: [build] strategy: fail-fast: false # prevent one matrix pipeline from being cancelled if one fails, we want them all to run to completion. @@ -334,7 +334,7 @@ jobs: sign: needs: [package] if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/rel/') }} - runs-on: windows-2025-large + runs-on: windows-latest-large permissions: id-token: write # Required for requesting the JWT From af6f647dae76c97638c5b5f109f324cf24a45f59 Mon Sep 17 00:00:00 2001 From: Arlo Date: Fri, 15 May 2026 12:52:52 -0500 Subject: [PATCH 8/8] Revert "Use 'windows-latest-large' until 'windows-2025-large' is available" This reverts commit aa305f080ed0e7dba14283ce8b34719a52ac0488. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cc552372..6fd5ee91 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,7 +57,7 @@ jobs: # Build both Uno.UI/WinUI2/UWP and Uno.WinUI/WinUI3/WindowsAppSDK versions of our packages using a matrix build: needs: [Xaml-Style-Check] - runs-on: windows-latest-large + runs-on: windows-2025-large env: PROCDUMP_PATH: ${{ github.workspace }} @@ -222,7 +222,7 @@ jobs: dotnet-dump analyze ${{ steps.detect-dump.outputs.DUMP_FILE }} -c "clrstack" -c "pe -lines" -c "exit" package: - runs-on: windows-latest-large + runs-on: windows-2025-large needs: [build] strategy: fail-fast: false # prevent one matrix pipeline from being cancelled if one fails, we want them all to run to completion. @@ -334,7 +334,7 @@ jobs: sign: needs: [package] if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/rel/') }} - runs-on: windows-latest-large + runs-on: windows-2025-large permissions: id-token: write # Required for requesting the JWT