Skip to content

Commit

Permalink
Add Mac support (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
silbinarywolf authored Sep 22, 2024
1 parent a2455f1 commit fd7b75f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
include:
- os: "ubuntu-22.04"
- os: "windows-latest"
- os: "macos-12" # x86_64
- os: "macos-14" # arm64 as per table: https://github.com/actions/runner-images/blob/8a1eeaf6ac70c66f675a04078d1a7222edd42008/README.md#available-images

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

Expand Down
2 changes: 1 addition & 1 deletion src/androidbuild/tools.zig
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ pub const Tools = struct {
const host_os_and_arch: [:0]const u8 = switch (host_os_tag) {
.windows => "windows-x86_64",
.linux => "linux-x86_64",
// TODO(jae): 2024-09-15: Add MacOS support
.macos => "darwin-x86_64",
else => @panic(b.fmt("unhandled operating system: {}", .{host_os_tag})),
};

Expand Down

0 comments on commit fd7b75f

Please sign in to comment.