Skip to content

Commit

Permalink
Add CI for other supported ROS distros
Browse files Browse the repository at this point in the history
  • Loading branch information
civerachb-cpr committed Sep 9, 2024
1 parent 19d5253 commit dd8ced8
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,37 @@ jobs:
skip-tests: false
package-name:
robot_upstart

humble_ci:
name: Humble
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2.3.4
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: humble
- uses: ros-tooling/action-ros-ci@v0.3
id: action_ros_ci_step
with:
target-ros2-distro: humble
import-token: ${{ secrets.GITHUB_TOKEN }}
skip-tests: false
package-name:
robot_upstart

foxy_ci:
name: Foxy
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2.3.4
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: foxy
- uses: ros-tooling/action-ros-ci@v0.3
id: action_ros_ci_step
with:
target-ros2-distro: foxy
import-token: ${{ secrets.GITHUB_TOKEN }}
skip-tests: false
package-name:
robot_upstart

0 comments on commit dd8ced8

Please sign in to comment.