summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2024-03-03 01:17:14 -0500
committerGitHub <noreply@github.com>2024-03-03 01:17:14 -0500
commite1daa63a8673630d77acd3f4314573245c3f31c3 (patch)
treef942bfb4e8e983b01048fd3bf90b282e53c43a64 /.github
parentd604f72aac2be2121f8202cca214a16bfefc0528 (diff)
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
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_releases.yml7
-rw-r--r--.github/workflows/ci.yml1
2 files changed, 5 insertions, 3 deletions
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",