From 32124bce1321751c5d2024590c0c1ec1b3105765 Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Mon, 4 Dec 2023 11:50:26 -0800 Subject: [PATCH] scripts: Show wget details for aarch64 worker The wget has been causing frequent CI failure for the past few days, while it can't be reproduced manually. Let's show the wget details in our CI pipeline to understand better future errors. Signed-off-by: Bo Chen --- scripts/run_integration_tests_aarch64.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_integration_tests_aarch64.sh b/scripts/run_integration_tests_aarch64.sh index bc2fff27d..8a972a415 100755 --- a/scripts/run_integration_tests_aarch64.sh +++ b/scripts/run_integration_tests_aarch64.sh @@ -163,7 +163,7 @@ update_workloads() { CH_RELEASE_URL="https://github.com/cloud-hypervisor/cloud-hypervisor/releases/download/$LAST_RELEASE_VERSION/cloud-hypervisor-static-aarch64" CH_RELEASE_NAME="cloud-hypervisor-static-aarch64" pushd $WORKLOADS_DIR - time wget --quiet $CH_RELEASE_URL -O "$CH_RELEASE_NAME" || exit 1 + time wget $CH_RELEASE_URL -O "$CH_RELEASE_NAME" || exit 1 chmod +x $CH_RELEASE_NAME popd