Skip to content

ci: using action-ros-ci #161

ci: using action-ros-ci

ci: using action-ros-ci #161

Workflow file for this run

name: ros2
on:
push:
branches: [ ros2 ]
pull_request:
branches: [ ros2 ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
name: Build on ros2 ${{ matrix.ros_distro }} and ${{ matrix.docker_image }}
runs-on: ubuntu-latest
fail-fast: false

Check failure on line 22 in .github/workflows/ros2.yml

View workflow run for this annotation

GitHub Actions / ros2

Invalid workflow file

The workflow is not valid. .github/workflows/ros2.yml (Line: 22, Col: 5): Unexpected value 'fail-fast'
strategy:
matrix:
ros_distro: [humble, iron, jazzy]
include:
- ros_distro: 'humble'
docker_image: ubuntu:jammy
- ros_distro: 'iron'
docker_image: ubuntu:jammy
- ros_distro: 'jazzy'
docker_image: ubuntu:noble
container:
image: ${{ matrix.docker_image }}
steps:
- uses: ros-tooling/[email protected]
with:
required-ros-distributions: ${{ matrix.ros_distro }}
- uses: ros-tooling/[email protected]
with:
package-name: rtabmap_ros
target-ros2-distro: ${{ matrix.ros_distro }}