Skip to content

Commit fd7b75f

Browse files
Add Mac support (#7)
1 parent a2455f1 commit fd7b75f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
include:
2020
- os: "ubuntu-22.04"
2121
- os: "windows-latest"
22+
- os: "macos-12" # x86_64
23+
- os: "macos-14" # arm64 as per table: https://github.com/actions/runner-images/blob/8a1eeaf6ac70c66f675a04078d1a7222edd42008/README.md#available-images
2224

2325
runs-on: ${{matrix.os}}
2426

src/androidbuild/tools.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ pub const Tools = struct {
158158
const host_os_and_arch: [:0]const u8 = switch (host_os_tag) {
159159
.windows => "windows-x86_64",
160160
.linux => "linux-x86_64",
161-
// TODO(jae): 2024-09-15: Add MacOS support
161+
.macos => "darwin-x86_64",
162162
else => @panic(b.fmt("unhandled operating system: {}", .{host_os_tag})),
163163
};
164164

0 commit comments

Comments
 (0)