Skip to content

Commit debd88e

Browse files
authored
Merge branch 'main' into niels9001/handled
2 parents adccd6e + 25d5ba9 commit debd88e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ jobs:
3434

3535
# Steps represent a sequence of tasks that will be executed as part of the job
3636
steps:
37+
# .NET 6 SDK is required for xamlstyler.console to run.
38+
- name: Install .NET SDK v6
39+
uses: actions/setup-dotnet@v4
40+
with:
41+
dotnet-version: 6.0.x
42+
3743
- name: Install .NET SDK v${{ env.DOTNET_VERSION }}
3844
uses: actions/setup-dotnet@v4
3945
with:
@@ -58,7 +64,7 @@ jobs:
5864
# Build both Uno.UI/WinUI2/UWP and Uno.WinUI/WinUI3/WindowsAppSDK versions of our packages using a matrix
5965
build:
6066
needs: [Xaml-Style-Check]
61-
runs-on: windows-latest
67+
runs-on: windows-latest-large
6268

6369
# See https://docs.github.com/actions/using-jobs/using-a-matrix-for-your-jobs
6470
strategy:
@@ -236,7 +242,7 @@ jobs:
236242
dotnet-dump analyze ${{ steps.filter.outputs.dump_files }} -c "clrstack" -c "pe -lines" -c "exit"
237243
238244
package:
239-
runs-on: windows-latest
245+
runs-on: windows-latest-large
240246
needs: [build]
241247
strategy:
242248
fail-fast: false # prevent one matrix pipeline from being cancelled if one fails, we want them all to run to completion.

0 commit comments

Comments
 (0)