From c7b262641b0657fdcf71182e0a7fd95a516f802c Mon Sep 17 00:00:00 2001 From: Alessandro Decina Date: Fri, 27 Jan 2023 00:28:33 +1100 Subject: [PATCH] Run integration tests under fedora37 --- test/run.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/run.sh b/test/run.sh index 3bb6c6f3..a01171c2 100755 --- a/test/run.sh +++ b/test/run.sh @@ -15,7 +15,7 @@ fi # Test Image if [ -z "${AYA_TEST_IMAGE}" ]; then - AYA_TEST_IMAGE="fedora36" + AYA_TEST_IMAGE="fedora37" fi case "${AYA_TEST_IMAGE}" in @@ -26,12 +26,12 @@ esac download_images() { mkdir -p "${AYA_IMGDIR}" case $1 in - fedora36) - if [ ! -f "${AYA_IMGDIR}/fedora36.${AYA_TEST_ARCH}.qcow2" ]; then - IMAGE="Fedora-Cloud-Base-36-1.5.${AYA_TEST_ARCH}.qcow2" - IMAGE_URL="https://download.fedoraproject.org/pub/fedora/linux/releases/36/Cloud/${AYA_TEST_ARCH}/images" + fedora37) + if [ ! -f "${AYA_IMGDIR}/fedora37.${AYA_TEST_ARCH}.qcow2" ]; then + IMAGE="Fedora-Cloud-Base-37-1.7.${AYA_TEST_ARCH}.qcow2" + IMAGE_URL="https://download.fedoraproject.org/pub/fedora/linux/releases/37/Cloud/${AYA_TEST_ARCH}/images" echo "Downloading: ${IMAGE}, this may take a while..." - curl -o "${AYA_IMGDIR}/fedora36.${AYA_TEST_ARCH}.qcow2" -sSL "${IMAGE_URL}/${IMAGE}" + curl -o "${AYA_IMGDIR}/fedora37.${AYA_TEST_ARCH}.qcow2" -sSL "${IMAGE_URL}/${IMAGE}" fi ;; centos8)