Skip to content

Commit dad72a2

Browse files
committed
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
1 parent 0b72a58 commit dad72a2

File tree

4 files changed

+12
-21
lines changed

4 files changed

+12
-21
lines changed

.cirrus.yml

+6-16
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%YAML 1.1
22
---
3-
# Configuration for CirrusCI. This is primarily used for testing and building FreeBSD and macOS M1, since other
4-
# CI platforms don't seem to support these platforms as of writing (GH may support M1 soon though).
3+
# Configuration for CirrusCI. This is primarily used for testing and building FreeBSD and old versions of Linux,
4+
# since other CI platforms don't support build jobs for these configurations.
55
#
66
# Note that we set the YAML directive above to prevent some linting errors around the templates.
77

@@ -50,10 +50,7 @@ test_task:
5050
image_family: freebsd-14-0
5151
- name: "FreeBSD 13 Test"
5252
freebsd_instance:
53-
image_family: freebsd-13-2
54-
- name: "macOS M1 Test"
55-
macos_instance:
56-
image: ghcr.io/cirruslabs/macos-monterey-base:latest
53+
image_family: freebsd-13-3
5754
<<: *SETUP_TEMPLATE
5855
<<: *CACHE_TEMPLATE
5956
test_no_feature_script:
@@ -88,19 +85,12 @@ build_task:
8885
TARGET: "x86_64-unknown-freebsd"
8986
NAME: "x86_64-unknown-freebsd-14-0"
9087
- name: "FreeBSD 13 Build"
91-
alias: "freebsd_13_2_build"
88+
alias: "freebsd_13_3_build"
9289
freebsd_instance:
93-
image_family: freebsd-13-2
90+
image_family: freebsd-13-3
9491
env:
9592
TARGET: "x86_64-unknown-freebsd"
96-
NAME: "x86_64-unknown-freebsd-13-2"
97-
- name: "macOS M1 Build"
98-
alias: "macos_build"
99-
macos_instance:
100-
image: ghcr.io/cirruslabs/macos-monterey-base:latest
101-
env:
102-
TARGET: "aarch64-apple-darwin"
103-
NAME: "aarch64-apple-darwin"
93+
NAME: "x86_64-unknown-freebsd-13-3"
10494
- name: "Legacy Linux (2.17)"
10595
alias: "linux_2_17_build"
10696
container:

.github/workflows/build_releases.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
matrix:
4040
info:
4141
# ======= Supported targets =======
42-
# Linux (x64, x86, aarch64)
42+
# Linux (x86-64, x86, aarch64)
4343
- {
4444
os: "ubuntu-20.04",
4545
target: "x86_64-unknown-linux-gnu",
@@ -72,10 +72,11 @@ jobs:
7272
cross: true,
7373
}
7474

75-
# macOS (x64), M1 is built via CirrusCI.
75+
# macOS (x86-64 and aarch64)
7676
- { os: "macos-12", target: "x86_64-apple-darwin", cross: false }
77+
- { os: "macos-14", target: "aarch64-apple-darwin", cross: false }
7778

78-
# Windows (x64, x86)
79+
# Windows (x86-64, x86)
7980
- {
8081
os: "windows-2019",
8182
target: "x86_64-pc-windows-msvc",

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ jobs:
7878
cross: true,
7979
}
8080
- { os: "macos-12", target: "x86_64-apple-darwin", cross: false }
81+
- { os: "macos-14", target: "aarch64-apple-darwin", cross: false }
8182
- {
8283
os: "windows-2019",
8384
target: "x86_64-pc-windows-msvc",

scripts/cirrus/build.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@
2020

2121
# Form of each task is (TASK_ALIAS, FILE_NAME).
2222
TASKS: List[Tuple[str, str]] = [
23-
("freebsd_13_2_build", "bottom_x86_64-unknown-freebsd-13-2.tar.gz"),
23+
("freebsd_13_3_build", "bottom_x86_64-unknown-freebsd-13-3.tar.gz"),
2424
("freebsd_14_0_build", "bottom_x86_64-unknown-freebsd-14-0.tar.gz"),
25-
("macos_build", "bottom_aarch64-apple-darwin.tar.gz"),
2625
("linux_2_17_build", "bottom_x86_64-unknown-linux-gnu-2-17.tar.gz"),
2726
]
2827
URL = "https://api.cirrus-ci.com/graphql"

0 commit comments

Comments
 (0)