Skip to content

Commit

Permalink
chore(ci): downgrade windows runners from 2022 to 2019
Browse files Browse the repository at this point in the history
Per actions/runner-images#7320, the
older runners perform better.
  • Loading branch information
ammario committed Jun 1, 2023
1 parent 36f4e0d commit 7c932c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -244,14 +244,14 @@ jobs:
run: ./scripts/check_unstaged.sh

test-go:
runs-on: ${{ matrix.os == 'ubuntu-latest' && github.repository_owner == 'coder' && 'ubuntu-latest-8-cores' || matrix.os == 'windows-2022' && github.repository_owner == 'coder' && 'windows-latest-8-cores'|| matrix.os }}
runs-on: ${{ matrix.os == 'ubuntu-latest' && github.repository_owner == 'coder' && 'ubuntu-latest-8-cores' || matrix.os == 'windows-2019' && github.repository_owner == 'coder' && 'windows-latest-8-cores'|| matrix.os }}
timeout-minutes: 20
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-2022
- windows-2019
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit 7c932c2

Please sign in to comment.