Skip to content

Commit

Permalink
Do not run tests with QEMU
Browse files Browse the repository at this point in the history
  • Loading branch information
traversaro authored Dec 6, 2024
1 parent 1ec2faf commit 413c7b8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion recipe/build_cxx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ cmake ${CMAKE_ARGS} -GNinja .. \

cmake --build . --config Release

if [[ ("${CONDA_BUILD_CROSS_COMPILATION:-}" != "1" || "${CROSSCOMPILING_EMULATOR}" != "") && "${target_platform}" != osx-* ]]; then
# Skip tests during cross-compilation as the QEMU emulator is not supported,
# see https://github.com/gazebosim/gz-transport/issues/561
if [[ ("${CONDA_BUILD_CROSS_COMPILATION:-}" != "1") && "${target_platform}" != osx-* ]]; then
ctest -R '^ControlBoard|^ClockTest|^ConfigurationParsingTest' --output-on-failure --repeat until-pass:5 -C Release
fi

Expand Down

0 comments on commit 413c7b8

Please sign in to comment.