From e1daa63a8673630d77acd3f4314573245c3f31c3 Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Sun, 3 Mar 2024 01:17:14 -0500 Subject: ci: migrate macOS ARM builds to use GHA (#1419) * ci: migrate macOS ARM builds to use GHA M1 macOS runners are now available on GHA, so we can use it instead of CirrusCI for builds/CI. * bump freebsd --- .github/workflows/build_releases.yml | 7 ++++--- .github/workflows/ci.yml | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/workflows/build_releases.yml b/.github/workflows/build_releases.yml index 56ccfa96..6eed062e 100644 --- a/.github/workflows/build_releases.yml +++ b/.github/workflows/build_releases.yml @@ -39,7 +39,7 @@ jobs: matrix: info: # ======= Supported targets ======= - # Linux (x64, x86, aarch64) + # Linux (x86-64, x86, aarch64) - { os: "ubuntu-20.04", target: "x86_64-unknown-linux-gnu", @@ -72,10 +72,11 @@ jobs: cross: true, } - # macOS (x64), M1 is built via CirrusCI. + # macOS (x86-64 and aarch64) - { os: "macos-12", target: "x86_64-apple-darwin", cross: false } + - { os: "macos-14", target: "aarch64-apple-darwin", cross: false } - # Windows (x64, x86) + # Windows (x86-64, x86) - { os: "windows-2019", target: "x86_64-pc-windows-msvc", diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e88e8b71..0b98b78b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,6 +78,7 @@ jobs: cross: true, } - { os: "macos-12", target: "x86_64-apple-darwin", cross: false } + - { os: "macos-14", target: "aarch64-apple-darwin", cross: false } - { os: "windows-2019", target: "x86_64-pc-windows-msvc", -- cgit v1.2.3