From 06bff128100d759a725e3e57f19661f824f30e31 Mon Sep 17 00:00:00 2001 From: Arlo Date: Fri, 19 Sep 2025 09:36:59 -0500 Subject: [PATCH 1/2] Install .NET 6 SDK to enable XAML Styler after removal from `windows-latest` Actions CI image. --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 07a8196..5d10b24 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,6 +29,12 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: + # .NET 6 SDK is required for xamlstyler.console to run. + - name: Install .NET SDK v6 + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 6.0.x + - name: Install .NET SDK v${{ env.DOTNET_VERSION }} uses: actions/setup-dotnet@v4 with: From 5a5611479772f108799f14e9760d532fe755d00f Mon Sep 17 00:00:00 2001 From: Arlo Date: Fri, 19 Sep 2025 10:22:41 -0500 Subject: [PATCH 2/2] Update runner to windows-latest-large to fix "out of disk space" errors --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5d10b24..c9c8807 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -95,7 +95,7 @@ jobs: # Test job to build the project template project-template: - runs-on: windows-latest + runs-on: windows-latest-large env: HEADS_DIRECTORY: tooling/ProjectHeads PROJECT_DIRECTORY: tooling/ProjectTemplate @@ -145,7 +145,7 @@ jobs: # Test job to build a single experiment to ensure our changes work for both our main types of solutions at the moment new-experiment: - runs-on: windows-latest + runs-on: windows-latest-large strategy: fail-fast: false # prevent one matrix pipeline from being cancelled if one fails, we want them all to run to completion.