From fefd5137152556d1ad48c59756f02d7a772fdf8b Mon Sep 17 00:00:00 2001 From: Andrea Terzolo Date: Tue, 26 Nov 2024 15:11:03 +0100 Subject: [PATCH] chore: install bpftool manually Signed-off-by: Andrea Terzolo --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a6a66aa8c..19ae7c68b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,11 @@ jobs: steps: - name: Install deps ⛓️ run: | - apk add g++ gcc cmake make git bash perl linux-headers autoconf automake m4 libtool elfutils-dev libelf-static patch binutils bpftool clang + apk add g++ gcc cmake make git bash perl linux-headers autoconf automake m4 libtool elfutils-dev libelf-static patch binutils clang llvm + git clone https://github.com/libbpf/bpftool.git --branch v7.3.0 --single-branch + cd bpftool + git submodule update --init + cd src && make install - name: Checkout Libs ⤵️ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2