Skip to content

Commit 7119511

Browse files
committed
Install libpcap-dev in release workflow build step
1 parent 365ad3d commit 7119511

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
version_number: ${{ github.event.inputs.version_number }}
2727
branch: ${{ github.event.inputs.branch }}
2828
github_token: ${{ secrets.GITHUB_TOKEN }}
29-
repo_build_command: rm -rf ../build && cmake -S. -B ../build -DSTANDALONE_TEST_BUILD_UNIX=1 && make -C ../build all
29+
repo_build_command: sudo apt-get install -y libpcap-dev && rm -rf ../build && cmake -S. -B ../build -DSTANDALONE_TEST_BUILD_UNIX=1 && make -C ../build all
3030
run_test_command: 'sudo apt-get install -y lcov unifdef ninja-build && rm -rf ../build && cmake --fresh -G Ninja -S test/unit-test -B ../build/ -DBUILD_CLONE_SUBMODULES=1 -DSANITIZE=address,undefined && ninja -C ../build && ASAN_OPTIONS=detect_odr_violation=0 ctest --test-dir ../build/ -E system --output-on-failure'
3131
changelog_file: History.txt

0 commit comments

Comments
 (0)