Skip to content

Commit 773706f

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 5b9e174 commit 773706f

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
@@ -1584,18 +1584,12 @@ jobs:
15841584
# Generate test list
15851585
TEST_ARGS="
15861586
-T ${ZEPHYR_ROOT}/samples/hello_world
1587+
-T ${ZEPHYR_ROOT}/samples/cpp/hello_world
15871588
-T ${ZEPHYR_ROOT}/tests/lib/c_lib
1589+
-T ${ZEPHYR_ROOT}/tests/lib/cpp
15881590
-T ${ZEPHYR_ROOT}/tests/lib/newlib
15891591
"
15901592
1591-
# FIXME: Build C++ samples and tests only for Linux hosts because there
1592-
# is a known issue causing link failures on non-Linux hosts (see
1593-
# GitHub issue #760).
1594-
if [ "${{ runner.os }}" == "Linux" ]; then
1595-
TEST_ARGS+="-T ${ZEPHYR_ROOT}/samples/cpp/hello_world "
1596-
TEST_ARGS+="-T ${ZEPHYR_ROOT}/tests/lib/cpp "
1597-
fi
1598-
15991593
# Run tests with twister
16001594
TWISTER="${ZEPHYR_ROOT}/scripts/twister"
16011595
${TWISTER} -v -N -M --force-color --inline-logs --retry-failed 3 \

0 commit comments

Comments
 (0)