From 82a0868ce4d503a8f7c40e2709ebe67518fbf532 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 25 Jul 2025 15:47:21 -0700 Subject: [PATCH] CI: Remove Debian backports The latest Debian 11 image includes bullseye-backports as a default repository in the /etc/apt/sources.list. However, this repository has gone end of life which effectively breaks the default install. We shouldn't need anything in backports so lets unconditionally remove backports on all Debian builders to resolve the issue. Reviewed-by: George Melikov Signed-off-by: Brian Behlendorf Closes #17569 --- .github/workflows/scripts/qemu-3-deps-vm.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/scripts/qemu-3-deps-vm.sh b/.github/workflows/scripts/qemu-3-deps-vm.sh index 904fbfbf1..c41ecd09d 100755 --- a/.github/workflows/scripts/qemu-3-deps-vm.sh +++ b/.github/workflows/scripts/qemu-3-deps-vm.sh @@ -28,6 +28,7 @@ function debian() { export DEBIAN_FRONTEND="noninteractive" echo "##[group]Running apt-get update+upgrade" + sudo sed -i '/[[:alpha:]]-backports/d' /etc/apt/sources.list sudo apt-get update -y sudo apt-get upgrade -y echo "##[endgroup]"