Skip to content

Commit

Permalink
Rename github action file
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilien Naveau committed Oct 16, 2024
1 parent c55d634 commit 24ab316
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci_ros2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Ubuntu20.04, ROS2 Continuous Integration

on: [push, pull_request]

jobs:
build:
strategy:
matrix:
include:
- ros_version: "humble"
ubuntu_version: "ubuntu-22.04"
- ros_version: "iron"
ubuntu_version: "ubuntu-22.04"
runs-on: ${{ matrix.ubuntu_version }}
steps:
#
# Setup the machines and build environment
#
- name: Install ROS.
uses: ros-tooling/[email protected]
with:
required-ros-distributions: ${{ matrix.ros_version }}

#
# Checkout the current branch
#
- uses: actions/checkout@v2

#
# Build and test the repo
#
- uses: ros-tooling/[email protected]
with:
package-name: linear_feedback_controller_msgs
target-ros2-distro: ${{ matrix.ros_version }}

0 comments on commit 24ab316

Please sign in to comment.