From 91fd2bafd0eb5cdf23e954490033f8cbea766845 Mon Sep 17 00:00:00 2001 From: ComplexSpaces Date: Sun, 25 Aug 2024 14:59:15 -0500 Subject: [PATCH] Update macOS GHA to account for runner changes --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75c185b..0210256 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,10 @@ jobs: triple: - { os: 'ubuntu-latest', target: 'x86_64-unknown-linux-gnu', cross: false } - { os: 'ubuntu-latest', target: 'i686-unknown-linux-gnu', cross: true } - - { os: 'macos-latest', target: 'x86_64-apple-darwin', cross: false } + # `macos-latest` is now using macOS 14 and ARM64. Future runners will also + # be ARM64: https://github.com/actions/runner-images/issues/9741 + - { os: 'macos-latest', target: 'x86_64-apple-darwin', cross: false, always_install_target: true } + - { os: 'macos-latest', target: 'aarch64-apple-darwin', cross: false } - { os: 'windows-latest', target: 'x86_64-pc-windows-msvc', cross: false } # iOS - { os: 'macos-latest', target: 'aarch64-apple-ios', cross: true }