Skip to content

Commit 3ff8b04

Browse files
Repo AssistCopilot
authored andcommitted
ci: switch test-reporter jobs from windows-latest to ubuntu-latest
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>
1 parent c4fbcf6 commit 3ff8b04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-report.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- completed
1212
jobs:
1313
test-report-release:
14-
runs-on: windows-latest
14+
runs-on: ubuntu-latest
1515
steps:
1616
- uses: dorny/test-reporter@v2
1717
with:
@@ -21,7 +21,7 @@ jobs:
2121
reporter: dotnet-trx # Format of test results
2222

2323
test-report-debug:
24-
runs-on: windows-latest
24+
runs-on: ubuntu-latest
2525
steps:
2626
- uses: dorny/test-reporter@v2
2727
with:

0 commit comments

Comments
 (0)