-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Maximilien Naveau
committed
Oct 16, 2024
1 parent
c55d634
commit 24ab316
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |