From b2a77f4f6fe65338254b064d3c05e610c2da717b Mon Sep 17 00:00:00 2001 From: Quentin Monnet Date: Thu, 19 Mar 2026 17:51:29 +0000 Subject: [PATCH] ci: Add libssl-dev dependency for arm64 builds in release workflow Following the addition of program signing capabilities in bpftool, we need libssl-dev to build. We've added it to the workflows, but missed the in-container arm64 build. Let's add it now. Signed-off-by: Quentin Monnet --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e467569..ef2173a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -109,7 +109,7 @@ jobs: run: | docker run --platform linux/arm64 --rm -v $(pwd):/build ubuntu:22.04 \ bash -c "apt-get update && \ - apt-get install -y make pkg-config gcc \ + apt-get install -y make pkg-config gcc libssl-dev \ libelf-dev libcap-dev libstdc++-11-dev zlib1g-dev && \ cd /build/bpftool && \ EXTRA_LDFLAGS=-static \