Skip to content

Instantly share code, notes, and snippets.

@AndBondStyle
Last active November 5, 2025 09:34
Show Gist options
  • Select an option

  • Save AndBondStyle/4f572d43fec9ed44b3b71746127820ad to your computer and use it in GitHub Desktop.

Select an option

Save AndBondStyle/4f572d43fec9ed44b3b71746127820ad to your computer and use it in GitHub Desktop.
Foxglove Bridge v0.8.5 Install
#!/bin/bash
set -ex
source /opt/ros/$ROS_DISTRO/setup.bash
mkdir /tmp/foxglove-build && cd /tmp/foxglove-build && mkdir src
cat <<EOF | vcs import src
- git:
local-name: foxglove-sdk/foxglove_bridge
uri: https://github.com/ros2-gbp/foxglove_bridge-release.git
version: release/$ROS_DISTRO/foxglove_bridge/0.8.5-1
EOF
rosdep update && rosdep install --from-paths src --ignore-src -y
colcon build --merge-install --install-base /opt/ros/$ROS_DISTRO \
--cmake-args -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF
cd - && rm -rf /tmp/foxglove-build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment