ci: remove 8.5 nightly testing

It no longer makes sense because:

- we don't make any changes to 8.5
- we don't regenerate test manifests for 8.5
- osbuild-composer for 8.5 is in the rhel-8.5.0 branch

Also, the latest-8.5.0 symlink was removed, which broke the CI.

Signed-off-by: Ondřej Budai <ondrej@budai.cz>
This commit is contained in:
Ondřej Budai 2021-10-26 08:46:25 +02:00 committed by Tom Gundersen
parent 3b6156a240
commit 83a35fb9b8
12 changed files with 13 additions and 57 deletions

View file

@ -1,14 +1,14 @@
#!/usr/bin/bash
#
# Test the ability to specify custom mountpoints for RHEL8.5 and above
# Test the ability to specify custom mountpoints
#
set -euo pipefail
source /etc/os-release
if [[ "${ID}-${VERSION_ID}" != "rhel-8.5" && "${ID}-${VERSION_ID}" != "rhel-9.0" ]]; then
echo "$0 is only enabled for rhel-8.5; skipping..."
if [[ "${ID}-${VERSION_ID}" != "rhel-8.6" && "${ID}-${VERSION_ID}" != "rhel-9.0" ]]; then
echo "$0 is only enabled for rhel-8.6 and rhel-9.0; skipping..."
exit 0
fi
@ -125,7 +125,7 @@ clean_up () {
##################################################
##
## RHEL8.5 & RHEL9.0 custom filesystems test - success case
## Custom filesystems test - success case
##
##################################################
@ -184,7 +184,7 @@ sudo composer-cli blueprints delete rhel85-custom-filesystem > /dev/null
##################################################
##
## RHEL8.5 & RHEL9.0 custom filesystems test - fail case
## Custom filesystems test - fail case
##
##################################################