Skip to content

Commit

Permalink
Fall back to default Windows runner when a custom one is not available
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeoneToIgnore committed May 24, 2024
1 parent 08a3d3a commit fc891e5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,15 @@ jobs:
# todo(windows): Actually run the tests
windows_tests:
name: (Windows) Run Clippy and tests
runs-on: hosted-windows-1
# Run on either of the `runner` hosts, but not on both.
# `hosted-windows-1` is a large, on-demand machine,
# while `windows-latest` is a free GH Actions one.
runs-on: ${{ matrix.runner }}
strategy:
matrix:
runner: [hosted-windows-1, windows-latest]
fail-fast: false
continue-on-error: true
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand Down

0 comments on commit fc891e5

Please sign in to comment.