1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-07 00:14:49 -04:00

Allow Linux build to be tested locally with act

This commit is contained in:
f4exb
2026-05-04 22:51:03 +02:00
parent db4f4810b4
commit 3f7152bc6f
+9 -1
View File
@@ -43,7 +43,15 @@ jobs:
bash cmake/ci/build_sdrplay.sh
- name: Build SDRangel
run: |
debuild -i -us -uc -b
if [ "${RUNNING_IN_ACT:-}" = "true" ]; then
mkdir -p /tmp/build
rsync -a --delete . /tmp/build/sdrangel/
cd /tmp/build/sdrangel
debuild -i -us -uc -b
cp ../sdrangel_*_amd64.deb "$GITHUB_WORKSPACE"/
else
debuild -i -us -uc -b
fi
- name: Get version
id: get_version
run: |