From 355329092f44b69ead35ef8f065c9d37bc7b51ea Mon Sep 17 00:00:00 2001 From: Markus Pettersson Date: Wed, 11 Oct 2023 16:03:18 +0200 Subject: [PATCH] Fix don't build a test runner image for macOS. --- test/build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/build.sh b/test/build.sh index 5d48845fe927..8832d931ab69 100755 --- a/test/build.sh +++ b/test/build.sh @@ -19,4 +19,7 @@ else cargo build --bin test-runner --release --target "${TARGET}" fi -./scripts/build-runner-image.sh +# Don't build a runner image for macOS. +if [[ $TARGET != aarch64-apple-darwin ]]; then + ./scripts/build-runner-image.sh +fi