From 9ab7b53954c66535959b6de04423be67d7934448 Mon Sep 17 00:00:00 2001 From: Kieran Date: Mon, 24 Jun 2024 09:53:00 +0100 Subject: [PATCH] chore(linux): remove centos 8 support --- .github/workflows/linux-verify.yml | 1 - templates/linux/setup.sh | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/linux-verify.yml b/.github/workflows/linux-verify.yml index 54f3348..046fb5b 100644 --- a/.github/workflows/linux-verify.yml +++ b/.github/workflows/linux-verify.yml @@ -19,7 +19,6 @@ jobs: strategy: matrix: os: - - quay.io/centos/centos:stream8 - quay.io/centos/centos:stream9 - ubuntu:20.04 - ubuntu:22.04 diff --git a/templates/linux/setup.sh b/templates/linux/setup.sh index 06489d1..0feeda6 100644 --- a/templates/linux/setup.sh +++ b/templates/linux/setup.sh @@ -4,7 +4,7 @@ set -eu -o pipefail version="0.6.0" supported="The following Linux OSs are supported, on x86_64 only: - * RHEL 8, & 9 + * RHEL 9 * Ubuntu 20.04 LTS (focal), 22.04 LTS (jammy) & 24.04 LTS (noble) * Debian 11 (bullseye) & 12 (bookworm)" @@ -79,7 +79,6 @@ identify_os() { os_type=rhel el_version=$(rpm -qa '(oraclelinux|sl|redhat|centos|fedora)*release(|-server)' --queryformat '%{VERSION}') case $el_version in - 8*) os_version=8 ;; 9*) os_version=9 ;; *) error "Detected RHEL or compatible but version ($el_version) is not supported." "$supported" ;; esac