Skip to content

Commit 44a581c

Browse files
committed
change debian builds to ignore r2s_gw
1 parent b365986 commit 44a581c

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/ros-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ jobs:
108108
if [[ "${{ matrix.ros_distro }}" == "jazzy" || \
109109
"${{ matrix.ros_distro }}" == "kilted" || \
110110
"${{ matrix.ros_distro }}" == "rolling" ]]; then
111-
pip3 install --break-system-packages -e .
111+
pip3 install --break-system-packages --ignore-installed pygments -e .
112112
else
113-
pip3 install -e .
113+
pip3 install --ignore-installed pygments -e .
114114
fi
115115
shell: bash
116116

scripts/build_debian_packages.sh

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# Build Debian packages for greenwave_monitor
2121
#
22-
# This script builds .deb packages for greenwave_monitor_interfaces, greenwave_monitor, and r2s_gw
22+
# This script builds .deb packages for greenwave_monitor_interfaces and greenwave_monitor
2323
#
2424
# Usage: ./scripts/build_debian_packages.sh [ROS_DISTRO] [UBUNTU_DISTRO]
2525
# Examples:
@@ -139,7 +139,7 @@ source /opt/ros/$ROS_DISTRO/setup.bash
139139

140140
# Build workspace first
141141
echo "Building workspace..."
142-
colcon build --packages-up-to r2s_gw
142+
colcon build --packages-up-to greenwave_monitor
143143
source install/setup.bash
144144

145145
# Setup rosdep mappings
@@ -217,12 +217,8 @@ else
217217
echo "Warning: greenwave_monitor directory not found, skipping"
218218
fi
219219

220-
# 3. Build r2s_gw
221-
if [ -d "r2s_gw" ]; then
222-
build_debian_package "r2s_gw" "r2s_gw"
223-
else
224-
echo "Warning: r2s_gw directory not found, skipping"
225-
fi
220+
# Note: r2s_gw is now a separate repository and not included in debian packages
221+
# Users should install r2s_gw from source if they want the rich TUI
226222

227223
echo "=================================="
228224
echo "Debian package generation complete!"

0 commit comments

Comments
 (0)