From: Emil Velikov Date: Tue, 11 Mar 2025 12:46:10 +0000 (+0000) Subject: ci: remove Debian/pahole dependency X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ecf507a704ce5a2f46e45bcb4f5070beba05fc32;p=thirdparty%2Fkmod.git 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 --- 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[@]}"