From 2b6bcabb1675b6cf3df059ce9f15e309586d509a Mon Sep 17 00:00:00 2001 From: Archit Gupta Date: Thu, 26 Feb 2026 09:15:37 -0800 Subject: [PATCH] Install libpcap-dev in release workflow build step --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e121b25aa..349c0fe53 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,6 +26,6 @@ jobs: version_number: ${{ github.event.inputs.version_number }} branch: ${{ github.event.inputs.branch }} github_token: ${{ secrets.GITHUB_TOKEN }} - repo_build_command: rm -rf ../build && cmake -S. -B ../build -DSTANDALONE_TEST_BUILD_UNIX=1 && make -C ../build all + 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 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' changelog_file: History.txt