Skip to content

Commit

Permalink
CI: remove macos-12; add macos-14-large
Browse files Browse the repository at this point in the history
The macos-12 CI will be completely removed by Dec 3, 2024.
(actions/runner-images issue 10721)

macos-15-large is not used yet as the CI fails with "No route to host"
(PR 63)

Signed-off-by: Akihiro Suda <[email protected]>
  • Loading branch information
AkihiroSuda committed Nov 21, 2024
1 parent 8664a96 commit 985db10
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ permissions:
contents: read
jobs:
release:
runs-on: macos-12
# macos-15 (ARM) does not seem to pass the reproducibility check?
runs-on: macos-15-large
# The maximum access is "read" for PRs from public forked repos
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token
permissions:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,14 @@ jobs:
integration:
name: Integration tests
strategy:
fail-fast: false
matrix:
# macos-13-large is used as macos-13 seems too flaky.
# macos-14 (ARM) cannot be used for the most part of the job
# macos-14 (ARM) and later cannot be used for the most part of the job
# due to the lack of the support for nested virt.
platform: [macos-12, macos-13-large]
#
# TODO: add macos-15-large https://github.com/lima-vm/socket_vmnet/pull/63
platform: [macos-13-large, macos-14-large]
runs-on: ${{ matrix.platform }}
timeout-minutes: 40
steps:
Expand Down

0 comments on commit 985db10

Please sign in to comment.