Skip to content

Commit cfdcc37

Browse files
Fix Agent and host Rolling CI (backport #486) (#488)
* Fix Agent and host Rolling CI (#486) Signed-off-by: Pablo Garrido <pablogs9@gmail.com> (cherry picked from commit d71ce51) # Conflicts: # .github/workflows/ci.yml # .github/workflows/nightly.yml * Fix Signed-off-by: Pablo Garrido <pablogs9@gmail.com> Co-authored-by: Pablo Garrido <pablogs9@gmail.com>
1 parent fa113b1 commit cfdcc37

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
apt install -y python3-colcon-metadata python3-pip
5858
rosdep update --rosdistro $ROS_DISTRO
5959
rosdep install -y --from-paths src --ignore-src -y
60+
apt install -y ros-${ROS_DISTRO}-rmw-fastrtps-cpp
6061
6162
- uses: actions/download-artifact@v1
6263
with:
@@ -193,6 +194,7 @@ jobs:
193194
- name: Dependencies
194195
run: |
195196
apt update
197+
apt upgrade -y
196198
# Workaround. Remove when https://discourse.ros.org/t/preparing-for-rolling-sync-delayed-by-python-3-10-transition/24521 solved
197199
apt install -y python3.9-dev
198200
# Install last version of CMake

.github/workflows/nightly.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -524,9 +524,12 @@ jobs:
524524
- name: dependencies
525525
run: |
526526
apt update
527+
# Workaround. Remove when https://discourse.ros.org/t/preparing-for-rolling-sync-delayed-by-python-3-10-transition/24521 solved
528+
apt install -y python3.9-dev
527529
apt install -y python3-colcon-metadata python3-pip
528530
rosdep update --rosdistro $ROS_DISTRO
529531
rosdep install -y --from-paths src --ignore-src -y
532+
apt install -y ros-${ROS_DISTRO}-rmw-fastrtps-cpp
530533
531534
- uses: actions/download-artifact@v1
532535
with:

0 commit comments

Comments
 (0)