From e950aa6b9a92066a41b2cbf278b57989b75cd072 Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Tue, 10 Sep 2019 15:53:45 -0700 Subject: [PATCH] ci: Reduce integration testing time By relying on a decompressed image, this patch assumes that downloading the image will always be faster than decompressing it from the worker VM. Signed-off-by: Sebastien Boeuf --- scripts/run_integration_tests.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/run_integration_tests.sh b/scripts/run_integration_tests.sh index 1698ed380..19ecaac39 100755 --- a/scripts/run_integration_tests.sh +++ b/scripts/run_integration_tests.sh @@ -23,12 +23,11 @@ if [ ! -f "$OVMF" ]; then fi CLEAR_OS_IMAGE_NAME="clear-cloudguest.img" -CLEAR_OS_IMAGE_URL="https://cloudhypervisorstorage.blob.core.windows.net/images/$CLEAR_OS_IMAGE_NAME.xz" +CLEAR_OS_IMAGE_URL="https://cloudhypervisorstorage.blob.core.windows.net/images/$CLEAR_OS_IMAGE_NAME" CLEAR_OS_IMAGE="$WORKLOADS_DIR/$CLEAR_OS_IMAGE_NAME" if [ ! -f "$CLEAR_OS_IMAGE" ]; then pushd $WORKLOADS_DIR wget --quiet $CLEAR_OS_IMAGE_URL - unxz $CLEAR_OS_IMAGE_NAME.xz popd fi