-
Notifications
You must be signed in to change notification settings - Fork 5.1k
github actions: try macos15-intel #21677
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,16 +88,16 @@ jobs: | |
cruntime: docker | ||
os: ubuntu-22.04 | ||
test-timeout: 7m | ||
- name: qemu-docker-macos-13-x86_64 | ||
- name: qemu-docker-macos-15-x86_64 | ||
driver: qemu | ||
cruntime: docker | ||
os: macos-13 | ||
os: macos-15-intel | ||
extra-start-args: --network socket_vmnet | ||
test-timeout: 50m | ||
- name: vfkit-docker-macos-13-x86_64 | ||
- name: vfkit-docker-macos-15-x86_64 | ||
driver: vfkit | ||
cruntime: docker | ||
os: macos-13 | ||
os: macos-13-intel | ||
extra-start-args: --network vmnet-shared | ||
test-timeout: 50m | ||
steps: | ||
|
@@ -258,8 +258,8 @@ jobs: | |
curl https://get.docker.com | sudo sh | ||
dockerd-rootless-setuptool.sh install -f | ||
docker context use rootless | ||
- name: Ensure bootpd is enabled (macos-13) | ||
if: matrix.os == 'macos-13' | ||
- name: Ensure bootpd is enabled (macos) | ||
if: contains(matrix.os, 'macos') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not needed on macos-15, time to remove this hack. |
||
shell: bash | ||
run: | | ||
set -x | ||
|
@@ -268,7 +268,7 @@ jobs: | |
sudo $fw --add /usr/libexec/bootpd | ||
sudo $fw --unblock /usr/libexec/bootpd | ||
- name: Update brew package index (macos) | ||
if: runner.os == 'macOS' | ||
if: contains(matrix.os, 'macos') | ||
run: brew update | ||
- name: Update apt-get package index (ubuntu) | ||
if: runner.os == 'Linux' && (matrix.driver == 'podman' || matrix.driver == 'none') | ||
|
@@ -369,12 +369,12 @@ jobs: | |
fi | ||
kubectl version --client=true | ||
- name: Install qemu and socket_vmnet (macos) | ||
if: matrix.os == 'macos-13' && matrix.driver == 'qemu' | ||
if: contains(matrix.os, 'macos') && matrix.driver == 'qemu' | ||
run: | | ||
brew install qemu socket_vmnet | ||
HOMEBREW=$(which brew) && sudo ${HOMEBREW} services start socket_vmnet | ||
- name: Install vfkit and vmnet_helper (macos) | ||
if: matrix.os == 'macos-13' && matrix.driver == 'vfkit' | ||
if: contains(matrix.os, 'macos') && matrix.driver == 'vfkit' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can simplify to check only for vfkit since it is not available on !macOS |
||
run: | | ||
brew install vfkit | ||
curl -fsSL https://github.com/minikube-machine/vmnet-helper/releases/latest/download/install.sh | sudo VMNET_INTERACTIVE=0 bash | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,10 +40,10 @@ jobs: | |
matrix: | ||
include: | ||
- driver: qemu | ||
os: macos-13 | ||
os: macos-15-intel | ||
network_flag: --network socket_vmnet | ||
- driver: vfkit | ||
os: macos-13 | ||
os: macos-15-intel | ||
network_flag: --network vmnet-shared | ||
- driver: docker | ||
os: ubuntu-24.04 | ||
|
@@ -94,7 +94,7 @@ jobs: | |
- name: Build Binaries | ||
run: make | ||
- name: Ensure bootpd is enabled (macos) | ||
if: matrix.os == 'macos-13' | ||
if: matrix.os == 'macos-15-intel' | ||
shell: bash | ||
run: | | ||
set -x | ||
|
@@ -103,18 +103,18 @@ jobs: | |
sudo $fw --add /usr/libexec/bootpd | ||
sudo $fw --unblock /usr/libexec/bootpd | ||
- name: Update brew (macos) | ||
if: matrix.os == 'macos-13' | ||
if: contains(matrix.os, 'macos') | ||
run: brew update | ||
- name: Install tools (macos) | ||
if: matrix.os == 'macos-13' | ||
if: contains(matrix.os, 'macos') | ||
run: brew install tree | ||
- name: Install vfkit and vmnet-helper (macos) | ||
if: matrix.driver == 'vfkit' | ||
if: contains(matrix.os, 'macos') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Incorect change - keep the previous code. |
||
run: | | ||
brew install vfkit | ||
curl -fsSL https://github.com/minikube-machine/vmnet-helper/releases/latest/download/install.sh | sudo VMNET_INTERACTIVE=0 bash | ||
- name: Install qemu and socket_vmnet (macos) | ||
if: matrix.os == 'macos-13' && matrix.driver == 'qemu' | ||
if: contains(matrix.os, 'macos') && matrix.driver == 'qemu' | ||
run: | | ||
brew install qemu socket_vmnet | ||
HOMEBREW=$(which brew) && sudo ${HOMEBREW} services start socket_vmnet | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
macos-15-intel