1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-03-24 21:28:29 -04:00

Retry make package in case hdituil fails

This commit is contained in:
Jon Beniston 2025-01-22 20:45:22 +00:00
parent 2248b42a06
commit 4519e512c6

View File

@ -44,7 +44,17 @@ jobs:
- name: Build SDRangel on Mac
run: |
cd build
make -j4 package
RETRIES=3
COUNT=1
while [ $COUNT -lt $RETRIES ]; do
make -j4 package
if [ $? -eq 0 ]; then
RETRIES=0
break
fi
let COUNT=$COUNT+1
done
shell: bash
- name: Get version
id: get_version
run: |