1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-23 01:55:48 -05:00

More fixes for Mac build

This commit is contained in:
srcejon 2023-12-06 13:08:09 +00:00
parent 720630c2fb
commit 30497b5204

View File

@ -130,6 +130,14 @@ jobs:
id: get_filename
run: echo "filename=$(grep CPACK_PACKAGE_FILE_NAME build/CMakeCache.txt | cut -d "=" -f2)" >> $GITHUB_OUTPUT
- name: Build SDRangel on Mac
run: |
cd build
make -j3
- name: Stop XProtectBehaviorService
run: |
echo "killing XProject as it can interfere with hdiutil"; sudo pkill -9 XProtect >/dev/null || true;
echo "waiting..."; while pgrep XProtect; do sleep 3; done;
- name: Build DMG
run: |
cd build
make package -j3