mirror of
https://github.com/micro-ROS/micro-ROS-Agent.git
synced 2026-09-06 18:05:17 +02:00
* Humble release (#135)
* Modify CI
* Update
Signed-off-by: Pablo Garrido <pablogs9@gmail.com>
* Update
Signed-off-by: Pablo Garrido <pablogs9@gmail.com>
* Update .github/workflows/ci.yml
* Update .github/workflows/ci.yml
* Modify CI
* Update to ubuntu latest
* Use pre-release repository
* Use ubuntu-20.04
* Fix
* Revert changes
Co-authored-by: Pablo Garrido <pablogs9@gmail.com>
(cherry picked from commit b0ebf5ab3f)
# Conflicts:
# .github/workflows/ci.yml
* Update with galactic
* Update .github/workflows/ci.yml
Co-authored-by: Antonio Cuadros <49162117+Acuadros95@users.noreply.github.com>
Co-authored-by: acuadros95 <acuadros1995@gmail.com>
39 lines
1.0 KiB
YAML
39 lines
1.0 KiB
YAML
name: CI micro-ROS Agent
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 'galactic'
|
|
schedule:
|
|
- cron: '33 6 * * *'
|
|
|
|
jobs:
|
|
|
|
microros_agent_ci:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ ubuntu-20.04 ]
|
|
ros_distribution: [ galactic ]
|
|
include:
|
|
- docker_image: ubuntu:20.04
|
|
ros_distribution: galactic
|
|
container:
|
|
image: ubuntu:20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ros-tooling/setup-ros@0.3.2
|
|
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.2.5
|
|
with:
|
|
package-name: "micro_ros_agent"
|
|
target-ros2-distro: ${{ matrix.ros_distribution }}
|
|
|