Skip to content

Commit

Permalink
workflows: Adjust runners (google#412)
Browse files Browse the repository at this point in the history
Disable test/macos-latest due to timeouts.
google#409

Enable ubuntu-22.04 and more macos variants.
  • Loading branch information
jmr authored Mar 1, 2025
1 parent 3231b88 commit 58de4ea
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@ jobs:
strategy:
matrix:
runs-on:
- ubuntu-22.04
- ubuntu-latest
# macos-13 is an intel runner, macos-14 is apple silicon
- macos-13
- macos-latest
- macos-13-large
# Can't add macos-13-xlarge due to
# https://github.com/zacharyburnett/setup-abseil-cpp/issues/4
- macos-latest-large
- macos-latest-xlarge
fail-fast: false
runs-on: ${{ matrix.runs-on }}
timeout-minutes: 30
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,14 @@ jobs:
strategy:
matrix:
runs-on:
- ubuntu-22.04
- ubuntu-latest
# macos-13 is an intel runner, macos-14 is apple silicon
- macos-13
- macos-latest
# Can't add macos-13-xlarge due to
# https://github.com/zacharyburnett/setup-abseil-cpp/issues/4
- macos-latest-large
# Disable macos-latest-xlarge due to timouts:
# https://github.com/google/s2geometry/issues/409
fail-fast: false
runs-on: ${{ matrix.runs-on }}
timeout-minutes: 30
Expand Down

0 comments on commit 58de4ea

Please sign in to comment.