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 e7ca2f4 commit 2435c83
Showing 1 changed file with 28 additions and 19 deletions.
47 changes: 28 additions & 19 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:
- 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}}

0 comments on commit 2435c83

Please sign in to comment.