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
27 changes: 27 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,33 @@ jobs:
run: make BUILD=debug all
- name: test
run: make BUILD=debug test-ci
MACOS_aarch64:
runs-on: macos-26
env:
CFLAGS: '-fsanitize=address,undefined'
CPATH: /opt/homebrew/include
LIBRARY_PATH: /opt/homebrew/lib
steps:
- uses: actions/checkout@v3
- name: brew
run: brew install capstone
- name: git checkout ir
uses: actions/checkout@v5
with:
repository: dstogov/ir
path: ir
- name: make ir
run: |
cd ir
make CC=cc PREFIX=/opt/homebrew BUILD=debug all
make CC=cc PREFIX=/opt/homebrew BUILD=debug install
- name: make
run: make CC=cc PREFIX=/opt/homebrew BUILD=debug all
- name: test
shell: bash
run: |
export C_INCLUDE_PATH=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include
make CC=cc BUILD=debug test-ci
Windows:
strategy:
fail-fast: false
Expand Down
Loading