From ecf507a704ce5a2f46e45bcb4f5070beba05fc32 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Tue, 11 Mar 2025 12:46:10 +0000 Subject: [PATCH] ci: remove Debian/pahole dependency The dependency was added as a workaround to the Debian bug linked. With that resolved we can remove pahole. Reference: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1098706 Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/314 Signed-off-by: Lucas De Marchi --- .github/actions/setup-debian/action.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/actions/setup-debian/action.yml b/.github/actions/setup-debian/action.yml index 1e5922fa..b9a09cef 100644 --- a/.github/actions/setup-debian/action.yml +++ b/.github/actions/setup-debian/action.yml @@ -17,12 +17,9 @@ runs: . /etc/os-release backports_pkgs=() - pkgs=() if [[ "$VERSION_CODENAME" == "bullseye" ]]; then echo "deb http://deb.debian.org/debian bullseye-backports main" >> /etc/apt/sources.list backports_pkgs=("meson" "ninja-build") - else - pkgs+=("pahole") fi apt-get update @@ -39,8 +36,7 @@ runs: meson \ scdoc \ zlib1g-dev \ - zstd \ - "${pkgs[@]}" + zstd if (( ${#backports_pkgs[@]} )); then apt-get install --yes -t ${VERSION_CODENAME}-backports "${backports_pkgs[@]}" -- 2.47.3