From 5f8ff1a44efd92cf3d48505f1adfee33393eb853 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 5 Sep 2026 20:52:08 +0900 Subject: [PATCH] ci: Disable debian 11 ``` Err:1 http://deb.debian.org/debian-security bullseye-security/main amd64 libperl5.32 amd64 5.32.1-4+deb11u5 404 Not Found [IP: 146.75.38.132 80] E: Failed to fetch http://deb.debian.org/debian-security/pool/updates/main/p/perl/libperl5.32_5.32.1-4%2bdeb11u5_amd64.deb 404 Not Found [IP: 146.75.38.132 80] E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? ``` ``` E: The repository 'http://archive.debian.org/debian-security bullseye-security Release' does not have a Release file. ``` --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70fbb643..b08eddba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,7 +92,7 @@ jobs: - container: debian:testing # glibc - container: debian:13-slim # glibc 2.41 - container: debian:12-slim # glibc 2.36 - - container: debian:11-slim # glibc 2.31, EoL + # - container: debian:11-slim # glibc 2.31, EoL, end of LTS - container: debian:10-slim # glibc 2.28, EoL, end of LTS - container: debian:9-slim # glibc 2.24, EoL, end of LTS - container: debian/eol:jessie-slim # 8, glibc 2.19, EoL, end of LTS @@ -154,12 +154,12 @@ jobs: steps: - name: Install requirements (old Debian) run: | - # In Debian, the old repositories is removed from the main mirrors some time after EoL. + # In Debian, the old repositories is removed from the main mirrors some time after end of LTS. codename=$(grep -E '^VERSION_CODENAME=' /etc/os-release | cut -d= -f2) sed -i /etc/apt/sources.list -e 's/deb.debian.org/archive.debian.org/g' \ -e 's|security.debian.org|archive.debian.org/|g' \ -e "/${codename}-updates/d" - if: startsWith(matrix.container, 'debian:9') || startsWith(matrix.container, 'debian:10') + if: startsWith(matrix.container, 'debian:9') || startsWith(matrix.container, 'debian:10') || startsWith(matrix.container, 'debian:11') - name: Install requirements (CentOS) run: | retry() {