Skip to content

Commit

Permalink
arch-dependent known failures
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke committed Feb 15, 2025
1 parent c90b1c0 commit 9be8ba7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions ros-one.repos
Original file line number Diff line number Diff line change
Expand Up @@ -1070,16 +1070,16 @@ sbuild_options:
arm64: --jobs=1

known_failures:
all:
*/*:
- jsk_3rdparty/*
- jsk_common/jsk_data
- jsk_common/jsk_ros_patch/multi_map_server
- jsk_visualization/*
- jsk_recognition/*
- jsk_roseus/roseus_tutorials
- pr2_robot/imu_monitor
jammy:
noble:
*/jammy:
*/noble:
- librealsense2
- realsense_ros/*
- gazebo_ros_pkgs/* # Gazebo classic not available anymore
Expand All @@ -1093,3 +1093,8 @@ known_failures:
- people/leg_detector
- robot_pose_ekf # missing bfl?
- moveit_calibration/* # missing bfl?
arm64/*:
- ros_realtime/rosrt # multiple definition of boost::atomic_signal_fence
- prosilica_* # cmake error: No SOURCES given to target: PvAPI
- gazebo_ros_pkgs/* # Gazebo not available on arm64
- multisense_ros/* # Eigen issue
2 changes: 1 addition & 1 deletion src/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function prepare_ws {

if [ "$SKIP_KNOWN_FAILING" = true ] ; then
# mark all folders of known-to-fail packages with COLCON_IGNORE
for key in all "$DEB_DISTRO"; do
for key in "*/*" "*/$DEB_DISTRO" "$ARCH/*" "$ARCH/$DEB_DISTRO"; do
while IFS= read -r failure; do
while IFS= read -r -d '' pkg_path; do
touch "$pkg_path/COLCON_IGNORE"
Expand Down

0 comments on commit 9be8ba7

Please sign in to comment.