mirror of
https://github.com/micro-ROS/micro-ROS-Agent.git
synced 2026-09-06 09:55:15 +02:00
* Bump setup-ros and action-ros-ci (#249)
Signed-off-by: Antón Casas <antoncasas@eprosima.com>
(cherry picked from commit 0e6e8e3673)
# Conflicts:
# .github/workflows/ci.yml
* Merge conflicts
Signed-off-by: Antón Casas <antoncasas@eprosima.com>
---------
Signed-off-by: Antón Casas <antoncasas@eprosima.com>
Co-authored-by: Antón Casas <antoncasas@eprosima.com>
38 lines
1.0 KiB
YAML
38 lines
1.0 KiB
YAML
name: CI micro-ROS Agent
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 'humble'
|
|
schedule:
|
|
- cron: '33 6 * * *'
|
|
|
|
jobs:
|
|
|
|
microros_agent_ci:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ ubuntu-20.04 ]
|
|
ros_distribution: [ humble ]
|
|
include:
|
|
- docker_image: ubuntu:jammy
|
|
ros_distribution: humble
|
|
container:
|
|
image: ubuntu:jammy
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ros-tooling/setup-ros@0.7.13
|
|
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/action-ros-ci@0.4.3
|
|
with:
|
|
package-name: "micro_ros_agent"
|
|
target-ros2-distro: ${{ matrix.ros_distribution }}
|