From 9c2f32c6607a412866d9242670593a6483cb89f7 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Thu, 27 Apr 2023 15:09:15 +0100 Subject: [PATCH] CI: remove Debian 9 from the matrix The distribution has recently been archived and the packages are no longer reachable... In the default configuration at least - I didn't try rummaging through the apt config. AFAICT Debian 9 has gone EOL in 2020, with LTS finishing in 2022. There is an ELTS still ongoing but that's outside of our concerns... Unless someone comes up with enticing suggestions that is ;-) Signed-off-by: Emil Velikov --- .github/workflows/tests.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9d243ff0..b10f85c6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,7 +27,6 @@ jobs: - {name: "almalinux", tag: "8"} - {name: "debian", tag: "11"} - {name: "debian", tag: "10"} - - {name: "debian", tag: "9"} - {name: "ubuntu", tag: "22.04"} - {name: "ubuntu", tag: "20.04"} - {name: "ubuntu", tag: "18.04"} @@ -99,8 +98,6 @@ jobs: run: | if [ "${{ matrix.distro.name }}" = alpine ] && [ "${{ matrix.distro.variant }}" = "-lts" ]; then ./run_test.sh --no-signing-tool - elif [ "${{ matrix.distro.name }}" = debian ] && [ "${{ matrix.distro.tag }}" = 9 ]; then - ./run_test.sh --no-signing-tool else ./run_test.sh fi