Skip to content

Commit

Permalink
chore(linux): remove centos 8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
bytestream authored Jun 24, 2024
1 parent a68d09b commit 9ab7b53
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/linux-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
strategy:
matrix:
os:
- quay.io/centos/centos:stream8
- quay.io/centos/centos:stream9
- ubuntu:20.04
- ubuntu:22.04
Expand Down
3 changes: 1 addition & 2 deletions templates/linux/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)"

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 9ab7b53

Please sign in to comment.