Skip to content

Commit

Permalink
Add CI pipelines for maintained ROS2 releases
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanscherzinger committed Apr 17, 2024
1 parent e4c2413 commit fa26147
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 2 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/industrial_ci_humble_action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Humble

on:
push:
pull_request:
schedule:
# Run every Friday at 6:30 am to detect breaking APIs
- cron: '30 6 * * 5'


jobs:
industrial_ci:
strategy:
fail-fast: false
matrix:
env:
- {ROS_DISTRO: humble, ROS_REPO: main}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}
22 changes: 22 additions & 0 deletions .github/workflows/industrial_ci_iron_action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Iron

on:
push:
pull_request:
schedule:
# Run every Friday at 6:30 am to detect breaking APIs
- cron: '30 6 * * 5'


jobs:
industrial_ci:
strategy:
fail-fast: false
matrix:
env:
- {ROS_DISTRO: iron, ROS_REPO: main}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}
23 changes: 23 additions & 0 deletions .github/workflows/industrial_ci_rolling_action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Rolling

on:
push:
pull_request:
schedule:
# Run every Friday at 6:30 am to detect breaking APIs
- cron: '30 6 * * 5'


jobs:
industrial_ci:
strategy:
fail-fast: false
matrix:
env:
- {ROS_DISTRO: rolling, ROS_REPO: testing}
- {ROS_DISTRO: rolling, ROS_REPO: main}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# schunk_gripper_driver
![build badge](https://github.com/SCHUNK-GmbH-Co-KG/schunk_egu_egk_gripper/actions/workflows/industrial_ci_humble_action.yml/badge.svg)
![build badge](https://github.com/SCHUNK-GmbH-Co-KG/schunk_egu_egk_gripper/actions/workflows/industrial_ci_iron_action.yml/badge.svg)
![build badge](https://github.com/SCHUNK-GmbH-Co-KG/schunk_egu_egk_gripper/actions/workflows/industrial_ci_rolling_action.yml/badge.svg)

# Schunk EGU/EGK Gripper


## Description
Expand Down Expand Up @@ -162,4 +166,4 @@ Additionally, you can refer to 'gripper_example.cpp' for guidance on using this
**!!!WARNING!!! This will move the gripper jaws**
```
ros2 run schunk_gripper schunk_example
```
```

0 comments on commit fa26147

Please sign in to comment.