Skip to content

Commit 10ea65f

Browse files
committed
update readme to refer to github
1 parent f05a269 commit 10ea65f

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/ros-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,17 @@ jobs:
4848
if [[ "${{ matrix.ros_distro }}" == "jazzy" || \
4949
"${{ matrix.ros_distro }}" == "kilted" || \
5050
"${{ matrix.ros_distro }}" == "rolling" ]]; then
51-
pip3 install --break-system-packages -I pygments textual
51+
pip3 install --break-system-packages -r r2s_gw/requirements.txt -I pygments
5252
else
53-
pip3 install textual
53+
pip3 install -r r2s_gw/requirements.txt -I pygments
5454
fi
5555
shell: bash
5656

5757
- name: Build packages
5858
run: |
5959
source /opt/ros/${{ matrix.ros_distro }}/setup.bash
6060
echo "Building and testing on ROS2 ${{ matrix.ros_distro }}"
61-
colcon build --packages-up-to r2s_gw
61+
colcon build --symlink-install --packages-up-to r2s_gw
6262
shell: bash
6363

6464
- name: Run tests

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,18 @@ The Greenwave Monitor ships with a fork of [r2s](https://github.com/mjcarroll/r2
1818
- **Interactive Dashboard**: Real-time visualization of monitoring data with an easy-to-use terminal interface
1919
- **Dynamic Topic Management**: Add or remove topics from monitoring without restarting
2020
- **Topic Status Indicators**: Color-coded topic status to easily catch topics that are not working as expected
21-
- **Universal Compatibility**: Displays diagnostics from any source that publishes a compatible `/diagnostics` topic, including NVIDIA Nova sensors and other hardware drivers
21+
- **Universal Compatibility**: Displays diagnostics from any source that publishes a compatible `/diagnostics` topic, including NVIDIA NITROS diagnostics, and NVIDIA NOVA sensor drivers.
2222

2323
## Installation
24-
TODO
24+
Source installation
2525

2626
```bash
2727
cd ros_ws/src
28-
git clone https://gitlab-master.nvidia.com/sgillen/ros2_monitor_node.git
28+
https://github.com/NVIDIA-ISAAC-ROS/greenwave_monitor.git
2929
cd ..
3030
colcon build --symlink-install --packages-up-to r2s_gw
31-
pip3 install -r requirements.txt --break-system-packages
31+
# Python requirements not all available as rosdeps yet, so install from pip for now
32+
pip3 install -r r2s_gw/requirements.txt -I pygments # Add --break-system-packages if not using a virtual environment
3233
source install/setup.sh
3334
```
3435

0 commit comments

Comments
 (0)