Skip to content

Commit

Permalink
ci: Skip testing LLVM on Windows
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
stephanosio committed Oct 29, 2024
1 parent 67610d9 commit 620877c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 620877c

Please sign in to comment.