Switch testing to 8.10 and 9.4 nightly

This commit is contained in:
Jakub Rusz 2023-11-01 12:45:37 +01:00 committed by Jakub Rusz
parent c77b73a888
commit 04ba4b81d8
12 changed files with 50 additions and 60 deletions

View file

@ -110,8 +110,8 @@ ALL_DISTROS=$(find "$REPO_PATH" -name '*.json' -printf '%P\n' | awk -F "." '{ pr
ALL_EXPECTED_DISTROS=$(echo "$ALL_DISTROS" | grep -E "$PATTERN" | grep -Ev 'beta|stream' | sort)
# Warning: filter out the remaining distros by matching whole words to avoid matching
# the value rhel-93 by the pattern rhel-9!
# If we're running on a RHEL 9.2 osbuild-composer doesn't know anything about 9.3
# images so the value rhel-9.3 should be treated as unrecognized and error out as
# If we're running on a RHEL 9.3 osbuild-composer doesn't know anything about 9.4
# images so the value rhel-9.4 should be treated as unrecognized and error out as
# expected in the test snippet further below
ALL_REMAINDERS=$(echo "$ALL_DISTROS" | grep -vw "$RECOGNIZED_DISTROS")