From eb1f4059eedc3b47617cb4c5369bdcbc75124fc3 Mon Sep 17 00:00:00 2001 From: Joey Parrish Date: Thu, 29 Aug 2024 22:20:32 +0000 Subject: [PATCH] feat: Add macOS arm64 builds via GitHub Actions VM Replaces self-hosted version. Closes #40 --- build-matrix.json | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/build-matrix.json b/build-matrix.json index 8c7bf63..25809b5 100644 --- a/build-matrix.json +++ b/build-matrix.json @@ -8,11 +8,19 @@ "exe_ext": "" }, { - "os": "macos-latest", + "comment": "Explicit macOS version 13 is required for explicit x64 CPU.", + "os": "macos-13", "os_name": "osx", "target_arch": "x64", "exe_ext": "" }, + { + "comment": "Latest macOS version 13 is arm64 CPU.", + "os": "macos-latest", + "os_name": "osx", + "target_arch": "arm64", + "exe_ext": "" + }, { "os": "windows-latest", "os_name": "win", @@ -28,12 +36,6 @@ "os_name": "linux", "target_arch": "arm64", "exe_ext": "" - }, - { - "os": "self-hosted-macos-arm64", - "os_name": "osx", - "target_arch": "arm64", - "exe_ext": "" } ] }