From 628092c8c7a04e9f97c5f357d34f58431e68c9fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Wed, 26 Mar 2025 16:19:49 +0100 Subject: [PATCH] ci: Don't build the compiler for arm-linux-musleabihf on aarch64-linux. We already do this smoke test on the x86_64-linux machines, so I don't see a point in duplicating this effort here. --- ci/aarch64-linux-debug.sh | 5 ----- ci/aarch64-linux-release.sh | 5 ----- 2 files changed, 10 deletions(-) diff --git a/ci/aarch64-linux-debug.sh b/ci/aarch64-linux-debug.sh index 220aaf12d9..8807b31c4c 100755 --- a/ci/aarch64-linux-debug.sh +++ b/ci/aarch64-linux-debug.sh @@ -48,11 +48,6 @@ unset CXX ninja install -# simultaneously test building self-hosted without LLVM and with 32-bit arm -stage3-debug/bin/zig build \ - -Dtarget=arm-linux-musleabihf \ - -Dno-lib - # No -fqemu and -fwasmtime here as they're covered by the x86_64-linux scripts. stage3-debug/bin/zig build test docs \ --maxrss 24696061952 \ diff --git a/ci/aarch64-linux-release.sh b/ci/aarch64-linux-release.sh index 69eed679e3..331cf3f098 100755 --- a/ci/aarch64-linux-release.sh +++ b/ci/aarch64-linux-release.sh @@ -48,11 +48,6 @@ unset CXX ninja install -# simultaneously test building self-hosted without LLVM and with 32-bit arm -stage3-release/bin/zig build \ - -Dtarget=arm-linux-musleabihf \ - -Dno-lib - # No -fqemu and -fwasmtime here as they're covered by the x86_64-linux scripts. stage3-release/bin/zig build test docs \ --maxrss 24696061952 \