Skip to content

Commit 2735820

Browse files
committed
(fix) Adds eol distros to rosdep update
1 parent 2fdea5d commit 2735820

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

create_deb.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fi
2222

2323
# Update rosdep database
2424
echo "Updating rosdep database..."
25-
rosdep update || { echo "Failed to update rosdep"; exit 1; }
25+
rosdep update --include-eol-distros || { echo "Failed to update rosdep"; exit 1; }
2626

2727
# create debs
2828
bloom-generate rosdebian --os-name ubuntu --os-version $(lsb_release -sc) --ros-distro $ROS_DISTRO

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ for version in "${ROS2_VERSIONS[@]}"; do
8888

8989
# Install package
9090
docker exec ros-test-$version /bin/sh -c "apt update && apt install -y python3-pip"
91-
docker exec ros-test-$version /bin/sh -c "rosdep update"
91+
docker exec ros-test-$version /bin/sh -c "rosdep update --include-eol-distros"
9292
docker exec ros-test-$version /bin/sh -c "apt install -y ./$DEB_NAME"
9393

9494
# TODO: Add provision for running tests

0 commit comments

Comments
 (0)