From 3ff8b0411cedca01959d0be2b8ec2bb39b00409a Mon Sep 17 00:00:00 2001 From: Repo Assist Date: Sun, 8 Mar 2026 01:29:13 +0000 Subject: [PATCH] ci: switch test-reporter jobs from windows-latest to ubuntu-latest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The ci-report workflow only runs dorny/test-reporter, which downloads test artifacts and posts check run results. This work is platform-independent and does not require a Windows environment. Switching to ubuntu-latest: - Reduces CI job startup time (~1–2 min faster per PR) - Reduces per-minute billing cost (Windows runners are ~2x more expensive than Linux runners) - No functional difference: TRX files from the test jobs are just downloaded and parsed, not executed Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/test-report.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-report.yaml b/.github/workflows/test-report.yaml index 71b8d2ce..ba0a510d 100644 --- a/.github/workflows/test-report.yaml +++ b/.github/workflows/test-report.yaml @@ -11,7 +11,7 @@ on: - completed jobs: test-report-release: - runs-on: windows-latest + runs-on: ubuntu-latest steps: - uses: dorny/test-reporter@v2 with: @@ -21,7 +21,7 @@ jobs: reporter: dotnet-trx # Format of test results test-report-debug: - runs-on: windows-latest + runs-on: ubuntu-latest steps: - uses: dorny/test-reporter@v2 with: