Skip to content

Commit

Permalink
ci: Disable compat on macOS/arm64
Browse files Browse the repository at this point in the history
GitHub's runner lacks the `-arm64e_preview_abi` boot argument required
to be able to run arm64e binaries.
  • Loading branch information
oleavr committed May 3, 2024
1 parent 8152e1c commit f48bdea
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,15 @@ jobs:
- name: Build
if: ${{ !startsWith(matrix.id, 'windows-') && matrix.id != 'linux-x86' }}
run: |
./configure ${{ env.FRIDA_CORE_OPTIONS }}
case ${{ matrix.id }} in
macos-arm64)
extra_options="--with-compat=disabled"
;;
*)
extra_options=""
;;
esac
./configure ${{ env.FRIDA_CORE_OPTIONS }} $extra_options
make
- name: Build
if: matrix.id == 'linux-x86'
Expand Down

0 comments on commit f48bdea

Please sign in to comment.