Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: try macos-14-large (Intel) #2637

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
jobs:
artifacts-darwin:
name: Artifacts Darwin
runs-on: macos-12
runs-on: macos-12 # The oldest available version
timeout-minutes: 20
steps:
- name: "Show xcode and SDK version"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
integration:
name: Integration tests
# on macOS 12, the default vmType is QEMU
runs-on: macos-12
runs-on: macos-12 # Do not upgrade until GitHub removes macos-12
timeout-minutes: 120
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:

vmnet:
name: "VMNet test"
runs-on: macos-12
runs-on: macos-14-large
timeout-minutes: 120
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -370,7 +370,7 @@ jobs:

upgrade:
name: "Upgrade test"
runs-on: macos-12
runs-on: macos-14-large
timeout-minutes: 120
strategy:
matrix:
Expand Down Expand Up @@ -400,8 +400,8 @@ jobs:

vz:
name: "vz"
# on macOS 13, the default vmType is VZ
runs-on: macos-13
# on macOS >= 13, the default vmType is VZ
runs-on: macos-14-large
Copy link
Contributor

@nirs nirs Sep 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is intel because you configured the repo with an intel runner?

OK, found the docs, it is very surprising that macos-14-large is intel and macos-14-xlarge is arm64.
https://docs.github.com/en/actions/using-github-hosted-runners/using-larger-runners/about-larger-runners#about-macos-larger-runners

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that the large runners are not available in free organizations; we can only use them because CNCF pays for it (or gets time donated by Microsoft, I don't know).

timeout-minutes: 120
strategy:
fail-fast: false
Expand Down