Skip to content

Commit 806a750

Browse files
committed
CI: remove macos-11; rename macos-13-xl to macos-13-large
- macos-11 is no longer available https://github.blog/changelog/2024-05-20-actions-upcoming-changes-to-github-hosted-macos-runners/ - macos-13-xl was silently renamed to macos-13-large at some point Signed-off-by: Akihiro Suda <[email protected]>
1 parent dc04de2 commit 806a750

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- 'master'
1515
jobs:
1616
release:
17-
runs-on: macos-11
17+
runs-on: macos-12
1818
timeout-minutes: 20
1919
steps:
2020
- uses: actions/checkout@v4

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ jobs:
1212
name: Integration tests
1313
strategy:
1414
matrix:
15-
# macos-13-xl is used as macos-13 seems too flaky
16-
platform: [macos-11, macos-12, macos-13-xl]
15+
# macos-13-large is used as macos-13 seems too flaky.
16+
# macos-14 (ARM) cannot be used for the most part of the job
17+
# due to the lack of the support for nested virt.
18+
platform: [macos-12, macos-13-large]
1719
runs-on: ${{ matrix.platform }}
1820
timeout-minutes: 40
1921
steps:

0 commit comments

Comments
 (0)