Update supported distributions #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ROS2 build/tests | |
on: | |
pull_request: | |
jobs: | |
build_and_tests: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
ros_distribution: | |
- humble | |
- iron | |
- jazzy | |
include: | |
# https://dlu.github.io/ros_clock/index.html | |
- docker_image: ubuntu:jammy | |
ros_distribution: humble | |
- docker_image: ubuntu:jammy | |
ros_distribution: iron | |
- docker_image: ubuntu:noble | |
ros_distribution: jazzy | |
container: | |
image: ${{ matrix.docker_image }} | |
steps: | |
- name: setup ROS environment | |
uses: ros-tooling/setup-ros@v0.4 | |
with: | |
required-ros-distributions: ${{ matrix.ros_distribution }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: build multirobot_map_merge and explore_lite | |
uses: ros-tooling/action-ros-ci@v0.3 | |
with: | |
package-name: multirobot_map_merge explore_lite | |
target-ros2-distro: ${{ matrix.ros_distribution }} | |
skip-tests: true | |
- name: Run gtests manually multirobot_map_merge | |
run: | | |
. /opt/ros/${{ matrix.ros_distribution }}/setup.sh && . ros_ws/install/setup.sh | |
cd ros_ws/build/multirobot_map_merge | |
./test_merging_pipeline | |
- name: Run gtests manually explore_lite | |
run: | | |
. /opt/ros/${{ matrix.ros_distribution }}/setup.sh && . ros_ws/install/setup.sh | |
cd ros_ws/build/explore_lite | |
./test_explore |