Skip to content

Commit

Permalink
gh: Stop using macos11 runners
Browse files Browse the repository at this point in the history
This removes the macos11 usage from github actions, and starts using macos14
macos11 runners are deprecated or removed from github actions:
https://github.blog/changelog/2024-05-20-actions-upcoming-changes-to-github-hosted-macos-runners/
# Veuillez saisir le message de validation pour vos modifications. Les lignes
# commençant par '#' seront ignorées, et un message vide abandonne la validation.
#
# Sur la branche nomacos11

# Modifications qui seront validées :
#	modifié :         .github/workflows/compile.yml
#
# Fichiers non suivis:
#	.goreleaser.yaml
#	0001-Add-script-to-start-EFI-image.patch
#	0002-misc-improvements-to-scripts.patch
#	0003-setRawMode-work.patch
#	0004-test-with-qemu.patch
#	0005-debug-hacks.patch
#	cmd/vfkit/main.go.orig
#	cmdline.test
#	diff
#	go.mod.orig
#	go.mod.rej
#	hacks.diff
#	patch
#	pkg/config/json.go~
#	pkg/ignition/
#	rest.md
#	run-sample-vm.sh
#	start-vm.sh
#	stdout/
#	vfkit
#	vfkit-amd64
#	vfkit-arm64
#	vfkit-macos12
#
  • Loading branch information
cfergeau committed Jul 10, 2024
1 parent 966a928 commit 3df5729
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
fail-fast: false
matrix:
os:
- macOS-11
- macOS-12
- macOS-13
- macOS-14
steps:
- name: Check out repository code
uses: actions/checkout@v4
Expand All @@ -45,12 +45,11 @@ jobs:
- name: Build
run: make
- name: Test
if: matrix.os != 'macOS-11'
run: make test
- name: vet
run: go vet ./...
- name: Upload vfkit artifact
if: matrix.os == 'macOS-13'
if: matrix.os == 'macOS-14'
uses: actions/upload-artifact@v4
with:
name: Unsigned vfkit Universal Binary
Expand Down

0 comments on commit 3df5729

Please sign in to comment.