From 8eebbacb961fd4c0e00d222ed9520ebecde1d0ae Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Mon, 23 Mar 2026 10:03:58 -0400 Subject: [PATCH] add missing sudo to macos CI --- .github/workflows/build_all.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index c5448ef4..45f608da 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -143,7 +143,7 @@ jobs: run: git clone https://github.com/hydrasdr/rfone_host && cd rfone_host && mkdir build && cd build && cmake -DCMAKE_OSX_DEPLOYMENT_TARGET=10.15 -DCMAKE_BUILD_TYPE=Release .. && make -j3 && sudo make install && cd ../../ - name: Install libdlcr - run: wget https://dragnlabs.com/host-tools/dlcr_host_v0.3.0.zip && mkdir dlcr_host && cd dlcr_host && 7z x ../dlcr_host_v0.3.0.zip && mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release && make -j2 && make install && cd ../../ + run: wget https://dragnlabs.com/host-tools/dlcr_host_v0.3.0.zip && mkdir dlcr_host && cd dlcr_host && 7z x ../dlcr_host_v0.3.0.zip && mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release && make -j2 && sudo make install && cd ../../ - name: Prepare CMake working-directory: ${{runner.workspace}}/build @@ -206,7 +206,7 @@ jobs: run: git clone https://github.com/hydrasdr/rfone_host && cd rfone_host && mkdir build && cd build && cmake -DCMAKE_OSX_DEPLOYMENT_TARGET=10.15 -DCMAKE_BUILD_TYPE=Release .. && make -j3 && sudo make install && cd ../../ - name: Install libdlcr - run: wget https://dragnlabs.com/host-tools/dlcr_host_v0.3.0.zip && mkdir dlcr_host && cd dlcr_host && 7z x ../dlcr_host_v0.3.0.zip && mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release && make -j2 && make install && cd ../../ + run: wget https://dragnlabs.com/host-tools/dlcr_host_v0.3.0.zip && mkdir dlcr_host && cd dlcr_host && 7z x ../dlcr_host_v0.3.0.zip && mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release && make -j2 && sudo make install && cd ../../ - name: Prepare CMake working-directory: ${{runner.workspace}}/build