Skip to content

Commit

Permalink
Updated CI for Humble and Jazzy.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaltovski committed Nov 19, 2024
1 parent 46c7852 commit 6ff8c02
Showing 1 changed file with 26 additions and 17 deletions.
43 changes: 26 additions & 17 deletions .github/workflows/ci.yml
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:
- humble-devel
pull_request:
branches:
- humble-devel
schedule:
- cron: "0 0 * * *" # every day at midnight

jobs:
humble_ci:
name: Humble CI Job
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: humble
- name: Build and Test
uses: ros-tooling/[email protected]
with:
package-name: interactive_marker_twist_server
target-ros2-distro: humble
- 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}}

0 comments on commit 6ff8c02

Please sign in to comment.