From af7596e6834e6bcfa9459d18b012df9de730e48d Mon Sep 17 00:00:00 2001 From: Jim Huang Date: Fri, 27 Dec 2024 12:16:58 +0800 Subject: [PATCH] CI: Exclude prebuilt GNU toolchain path --- .ci/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/common.sh b/.ci/common.sh index 547c4293..e7168258 100644 --- a/.ci/common.sh +++ b/.ci/common.sh @@ -1,7 +1,7 @@ GCC_REL=14.2.rel1 ARM_MIRROR=https://github.com/DLTcollab/toolchain-arm/raw/main -SOURCES=$(find $(git rev-parse --show-toplevel) | egrep "\.(cpp|h)\$" | egrep -v "gcc-arm-${GCC_REL}-x86_64-aarch64-none-linux-gnu|gcc-arm-${GCC_REL}-x86_64-arm-none-linux-gnueabihf") +SOURCES=$(find $(git rev-parse --show-toplevel) | egrep "\.(cpp|h)\$" | egrep -v "arm-gnu-toolchain-${GCC_REL}-x86_64-aarch64-none-linux-gnu|arm-gnu-toolchain-${GCC_REL}-x86_64-arm-none-linux-gnueabihf") # Expect host is Linux/x86_64 check_platform()