Skip to content

Commit

Permalink
ci: Enable build for macos-aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
hrkfdn committed Feb 4, 2024
1 parent 5330c57 commit 479fa22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
container: ${{ matrix.container }}
strategy:
matrix:
build_target: [linux-x86_64, linux-arm64, linux-armhf, macos-x86_64, windows-x86_64]
build_target: [linux-x86_64, linux-arm64, linux-armhf, macos-x86_64, macos-aarch64, windows-x86_64]
include:
- build_target: linux-x86_64
os: ubuntu-latest
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
build_target: [linux, macos, windows]
build_target: [linux, macos-x86_64, macos-aarch64, windows]
include:
- build_target: linux
os: ubuntu-latest
artifact_suffix: linux-x86_64
target: x86_64-unknown-linux-gnu
features: ''
- build_target: macos
- build_target: macos-x86_64
os: macos-latest
artifact_suffix: macos-x86_64
target: x86_64-apple-darwin
features: '--no-default-features --features rodio_backend,pancurses_backend'
- build_target: macos
- build_target: macos-aarch64
os: macos-14
artifact_suffix: macos-aarch64
target: aarch64-apple-darwin
Expand Down

0 comments on commit 479fa22

Please sign in to comment.