From e6e9273ba563f0482c97691b3ef28aeba8906ff1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20L=C3=B6nnhager?= Date: Fri, 18 Oct 2024 16:14:12 +0200 Subject: [PATCH] Update before running end-to-end tests --- test/scripts/ci-runtests.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/scripts/ci-runtests.sh b/test/scripts/ci-runtests.sh index 3e64894e744f..098a8bdae540 100755 --- a/test/scripts/ci-runtests.sh +++ b/test/scripts/ci-runtests.sh @@ -13,6 +13,12 @@ fi TEST_OS=$1 +if [[ "$(uname -s)" == "Darwin" ]]; then + # NOTE: We only do this on macOS since we use containers otherwise + echo "Updating Rust toolchain" + rustup update +fi + # shellcheck source=test/scripts/test-utils.sh source "test-utils.sh"