Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,26 @@ jobs:
gmake all
gmake test-ci

MACOS_aarch64:
name: 'macOS arm64'
runs-on: macos-26
steps:
- uses: actions/checkout@v3
- name: brew
run: brew install capstone
- name: make
run: |
make TARGET=aarch64 BUILD=debug \
CFLAGS="-fsanitize=address,undefined -I$(brew --prefix)/include" \
LDFLAGS="-lm -ldl -L$(brew --prefix)/lib" \
all
- name: test
run: |
make TARGET=aarch64 BUILD=debug \
CFLAGS="-fsanitize=address,undefined -I$(brew --prefix)/include" \
LDFLAGS="-lm -ldl -L$(brew --prefix)/lib" \
test-ci

MACOS_x86_64:
runs-on: macos-15-intel
env:
Expand Down
Loading