Skip to content

Commit 6b93651

Browse files
committed
CI: remove macos-12; add macos-14-large
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]>
1 parent 2e0091c commit 6b93651

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
contents: read
1717
jobs:
1818
release:
19-
runs-on: macos-12
19+
runs-on: macos-15
2020
# The maximum access is "read" for PRs from public forked repos
2121
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token
2222
permissions:

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,14 @@ jobs:
1414
integration:
1515
name: Integration tests
1616
strategy:
17+
fail-fast: false
1718
matrix:
1819
# macos-13-large is used as macos-13 seems too flaky.
19-
# macos-14 (ARM) cannot be used for the most part of the job
20+
# macos-14 (ARM) and later cannot be used for the most part of the job
2021
# due to the lack of the support for nested virt.
21-
platform: [macos-12, macos-13-large]
22+
#
23+
# TODO: add macos-15-large https://github.com/lima-vm/socket_vmnet/pull/63
24+
platform: [macos-13-large, macos-14-large]
2225
runs-on: ${{ matrix.platform }}
2326
timeout-minutes: 40
2427
steps:

0 commit comments

Comments
 (0)