Don't run unsupported tests on 8.6 and 9.0
https://coreos.slack.com/archives/C0235DZB0DT/p1650536467098679?thread_ts=1650512166.141439&cid=C0235DZB0DT
This commit is contained in:
parent
013eb6c9af
commit
1e520719cb
3 changed files with 39 additions and 4 deletions
|
|
@ -1,8 +1,20 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
source /usr/libexec/osbuild-composer-test/set-env-variables.sh
|
source /usr/libexec/osbuild-composer-test/set-env-variables.sh
|
||||||
|
|
||||||
|
if [ "${NIGHTLY:=false}" == "true" ]; then
|
||||||
|
case "${ID}-${VERSION_ID}" in
|
||||||
|
"rhel-8.6" | "rhel-9.0" )
|
||||||
|
echo "$0 is not enabled for ${ID}-${VERSION_ID} skipping..."
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
# Container image used for cloud provider CLI tools
|
# Container image used for cloud provider CLI tools
|
||||||
CONTAINER_IMAGE_CLOUD_TOOLS="quay.io/osbuild/cloud-tools:latest"
|
CONTAINER_IMAGE_CLOUD_TOOLS="quay.io/osbuild/cloud-tools:latest"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,10 +7,21 @@
|
||||||
# that the package from blueprint was installed.
|
# that the package from blueprint was installed.
|
||||||
#
|
#
|
||||||
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
source /usr/libexec/osbuild-composer-test/set-env-variables.sh
|
source /usr/libexec/osbuild-composer-test/set-env-variables.sh
|
||||||
|
|
||||||
|
if [ "${NIGHTLY:=false}" == "true" ]; then
|
||||||
|
case "${ID}-${VERSION_ID}" in
|
||||||
|
"rhel-8.6" | "rhel-9.0" )
|
||||||
|
echo "$0 is not enabled for ${ID}-${VERSION_ID} skipping..."
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
# Colorful output.
|
# Colorful output.
|
||||||
function greenprint {
|
function greenprint {
|
||||||
echo -e "\033[1;32m[$(date -Isecond)] ${1}\033[0m"
|
echo -e "\033[1;32m[$(date -Isecond)] ${1}\033[0m"
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,20 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
source /usr/libexec/osbuild-composer-test/set-env-variables.sh
|
source /usr/libexec/osbuild-composer-test/set-env-variables.sh
|
||||||
|
|
||||||
|
if [ "${NIGHTLY:=false}" == "true" ]; then
|
||||||
|
case "${ID}-${VERSION_ID}" in
|
||||||
|
"rhel-8.6" | "rhel-9.0")
|
||||||
|
echo "$0 is not enabled for ${ID}-${VERSION_ID} skipping..."
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
# Container images for MinIO Server and Client
|
# Container images for MinIO Server and Client
|
||||||
CONTAINER_MINIO_CLIENT="quay.io/minio/mc:latest"
|
CONTAINER_MINIO_CLIENT="quay.io/minio/mc:latest"
|
||||||
CONTAINER_MINIO_SERVER="quay.io/minio/minio:latest"
|
CONTAINER_MINIO_SERVER="quay.io/minio/minio:latest"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue