Skip to content

Commit 620877c

Browse files
committed
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 <[email protected]>
1 parent 67610d9 commit 620877c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1787,6 +1787,13 @@ jobs:
17871787
"
17881788
fi
17891789
1790+
# FIXME: Skip testing for LLVM on Windows because there are known issues
1791+
# (see GitHub issue #831).
1792+
if [ "${{ matrix.toolchain }}" == "llvm" ] &&
1793+
[ "${{ runner.os }}" == "Windows" ]; then
1794+
exit 0
1795+
fi
1796+
17901797
# Set toolchain variant
17911798
export ZEPHYR_TOOLCHAIN_VARIANT=zephyr-${{ matrix.toolchain }}
17921799

0 commit comments

Comments
 (0)