From 488c39e02e936048a5b9d241d4f0dab1694dd872 Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Mon, 28 Oct 2024 11:01:53 +0900 Subject: [PATCH] ci: Skip testing LLVM on Windows Do not run distribution bundle tests for Zephyr SDK LLVM toolchain on Windows because there are known issues causing strange CMake behaviours and subsequent build failures (see GitHub issue #831). Revert this commit when the above issue is fixed. Signed-off-by: Stephanos Ioannidis --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 971c5542..363599c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1787,6 +1787,13 @@ jobs: " fi + # FIXME: Skip testing for LLVM on Windows because there are known issues + # (see GitHub issue #831). + if [ "${{ matrix.toolchain }}" == "llvm" ] && + [ "${{ runner.os }}" == "Windows" ]; then + exit 0 + fi + # Set toolchain variant export ZEPHYR_TOOLCHAIN_VARIANT=zephyr-${{ matrix.toolchain }}