Skip to content

Commit 41449a8

Browse files
committed
Revert "ci: Exclude C++ sample and test builds on non-Linux hosts"
This reverts commit ac8acc2 because the non-Linux C++ build issue has been fixed. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent c4315bd commit 41449a8

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1588,18 +1588,12 @@ jobs:
15881588
# Generate test list
15891589
TEST_ARGS="
15901590
-T ${ZEPHYR_ROOT}/samples/hello_world
1591+
-T ${ZEPHYR_ROOT}/samples/cpp/hello_world
15911592
-T ${ZEPHYR_ROOT}/tests/lib/c_lib
1593+
-T ${ZEPHYR_ROOT}/tests/lib/cpp
15921594
-T ${ZEPHYR_ROOT}/tests/lib/newlib
15931595
"
15941596
1595-
# FIXME: Build C++ samples and tests only for Linux hosts because there
1596-
# is a known issue causing link failures on non-Linux hosts (see
1597-
# GitHub issue #760).
1598-
if [ "${{ runner.os }}" == "Linux" ]; then
1599-
TEST_ARGS+="-T ${ZEPHYR_ROOT}/samples/cpp/hello_world "
1600-
TEST_ARGS+="-T ${ZEPHYR_ROOT}/tests/lib/cpp "
1601-
fi
1602-
16031597
# Run tests with twister
16041598
TWISTER="${ZEPHYR_ROOT}/scripts/twister"
16051599
${TWISTER} -v -N --force-color --inline-logs --retry-failed 3 \

0 commit comments

Comments
 (0)