Skip to content

Update CHANGELOG

Update CHANGELOG #10

Workflow file for this run

name: CI micro-ROS Agent
on:
push:
branches:
- 'jazzy-fictionlab'
pull_request:
branches:
- 'jazzy-fictionlab'
jobs:
microros_agent_ci:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
ros_distribution: [ jazzy ]
include:
- docker_image: ubuntu:24.04
ros_distribution: jazzy
container:
image: ${{ matrix.docker_image }}
steps:
- uses: actions/checkout@v4
- uses: ros-tooling/[email protected]
with:
use-ros2-testing: false
required-ros-distributions: ${{ matrix.ros_distribution }}
- name : Download and install dependencies
run: |
apt-get install ros-${{ matrix.ros_distribution }}-micro-ros-msgs
apt-get install ros-${{ matrix.ros_distribution }}-rmw-fastrtps-cpp
- uses : ros-tooling/[email protected]
with:
package-name: "micro_ros_agent"
target-ros2-distro: ${{ matrix.ros_distribution }}