-
Notifications
You must be signed in to change notification settings - Fork 23
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
1 parent
e7ca2f4
commit 2435c83
Showing
1 changed file
with
28 additions
and
19 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 |
---|---|---|
@@ -1,26 +1,35 @@ | ||
name: CI | ||
name: interactive_marker_twist_server_ci | ||
|
||
on: | ||
push: | ||
branches: | ||
- foxy-devel | ||
pull_request: | ||
branches: | ||
- foxy-devel | ||
schedule: | ||
- cron: "0 0 * * *" # every day at midnight | ||
|
||
jobs: | ||
foxy_ci: | ||
name: Foxy CI Job | ||
runs-on: ubuntu-20.04 | ||
humble_ci: | ||
name: Humble OSRF Industrial | ||
strategy: | ||
matrix: | ||
env: | ||
- {ROS_REPO: testing, ROS_DISTRO: humble} | ||
- {ROS_REPO: main, ROS_DISTRO: humble} | ||
fail-fast: false | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Clone Repository | ||
uses: actions/checkout@v3 | ||
- name: Setup ROS | ||
uses: ros-tooling/[email protected] | ||
with: | ||
required-ros-distributions: foxy | ||
- name: Build and Test | ||
uses: ros-tooling/[email protected] | ||
with: | ||
package-name: interactive_marker_twist_server | ||
target-ros2-distro: foxy | ||
- uses: actions/checkout@v3 | ||
- uses: 'ros-industrial/industrial_ci@master' | ||
env: ${{matrix.env}} | ||
jazzy_ci: | ||
name: Jazzy OSRF Industrial | ||
strategy: | ||
matrix: | ||
env: | ||
- {ROS_REPO: testing, ROS_DISTRO: jazzy} | ||
- {ROS_REPO: main, ROS_DISTRO: jazzy} | ||
fail-fast: false | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: 'ros-industrial/industrial_ci@master' | ||
env: ${{matrix.env}} |