Skip to content

Commit

Permalink
Add jazzy workflows and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Apr 29, 2024
1 parent a9349e4 commit 71e59b1
Show file tree
Hide file tree
Showing 13 changed files with 250 additions and 4 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/jazzy-abi-compatibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Jazzy - ABI Compatibility Check
on:
workflow_dispatch:
pull_request:
branches:
- master
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/jazzy-abi-compatibility.yml'

jobs:
abi_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ros-industrial/industrial_ci@master
env:
ROS_DISTRO: jazzy
ROS_REPO: testing
ABICHECK_URL: github:${{ github.repository }}#${{ github.base_ref }}
NOT_TEST_BUILD: true
40 changes: 40 additions & 0 deletions .github/workflows/jazzy-binary-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Jazzy Binary Build
# author: Denis Štogl <[email protected]>
# description: 'Build & test all dependencies from released (binary) packages.'

on:
workflow_dispatch:
pull_request:
branches:
- master
- '*feature*'
- '*feature/**'
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/jazzy-binary-build.yml'
push:
branches:
- master
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/jazzy-binary-build.yml'
schedule:
# Run every morning to detect flakiness and broken dependencies
- cron: '03 1 * * *'

jobs:
binary:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master
strategy:
fail-fast: false
matrix:
ROS_REPO: [main, testing]
with:
ros_distro: jazzy
ros_repo: ${{ matrix.ROS_REPO }}
upstream_workspace: ros2_controllers-not-released.jazzy.repos
ref_for_scheduled_build: master
27 changes: 27 additions & 0 deletions .github/workflows/jazzy-coverage-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Coverage Build - Jazzy
on:
workflow_dispatch:
push:
branches:
- master
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/jazzy-coverage-build.yml'
pull_request:
branches:
- master
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/jazzy-coverage-build.yml'

jobs:
coverage_jazzy:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-build-coverage.yml@master
secrets: inherit
with:
ros_distro: jazzy
container: ubuntu:24.04
25 changes: 25 additions & 0 deletions .github/workflows/jazzy-debian-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Debian Rolling Source Build
on:
workflow_dispatch:
pull_request:
branches:
- master
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/jazzy-debian-build.yml'
schedule:
# Run every day to detect flakiness and broken dependencies
- cron: '03 1 * * *'


jobs:
jazzy_debian:
name: Rolling debian build
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-debian-build.yml@master
with:
ros_distro: jazzy
upstream_workspace: ros2_controllers.jazzy.repos
ref_for_scheduled_build: master
skip_packages: rqt_joint_trajectory_controller
14 changes: 14 additions & 0 deletions .github/workflows/jazzy-pre-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Pre-Commit - Jazzy

on:
workflow_dispatch:
pull_request:
branches:
- master

jobs:
pre-commit:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-pre-commit.yml@master
with:
ros_distro: jazzy
container: ubuntu:24.04
24 changes: 24 additions & 0 deletions .github/workflows/jazzy-rhel-semi-binary-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: RHEL Jazzy Semi-Binary Build
on:
workflow_dispatch:
pull_request:
branches:
- master
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/jazzy-rhel-semi-binary-build.yml'
schedule:
# Run every day to detect flakiness and broken dependencies
- cron: '03 1 * * *'


jobs:
jazzy_rhel:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-rhel-binary-build.yml@master
with:
ros_distro: jazzy
upstream_workspace: ros2_controllers.jazzy.repos
ref_for_scheduled_build: master
skip_packages: rqt_joint_trajectory_controller
39 changes: 39 additions & 0 deletions .github/workflows/jazzy-semi-binary-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Jazzy Semi-Binary Build
# description: 'Build & test that compiles the main dependencies from source.'

on:
workflow_dispatch:
pull_request:
branches:
- master
- '*feature*'
- '*feature/**'
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/jazzy-semi-binary-build.yml'
push:
branches:
- master
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/jazzy-semi-binary-build.yml'
schedule:
# Run every morning to detect flakiness and broken dependencies
- cron: '33 1 * * *'

jobs:
semi_binary:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master
strategy:
fail-fast: false
matrix:
ROS_REPO: [main, testing]
with:
ros_distro: jazzy
ros_repo: ${{ matrix.ROS_REPO }}
upstream_workspace: ros2_controllers.jazzy.repos
ref_for_scheduled_build: master
23 changes: 23 additions & 0 deletions .github/workflows/jazzy-source-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Jazzy Source Build
on:
workflow_dispatch:
push:
branches:
- master
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/jazzy-source-build.yml'
schedule:
# Run every day to detect flakiness and broken dependencies
- cron: '03 3 * * *'

jobs:
source:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-ros-tooling-source-build.yml@master
with:
ros_distro: jazzy
ref: master
ros2_repo_branch: jazzy
container: ubuntu:24.04
2 changes: 1 addition & 1 deletion .github/workflows/rolling-abi-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/rollinb-abi-compatibility.yml'
- '.github/workflows/rolling-abi-compatibility.yml'

jobs:
abi_check:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rolling-coverage-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ on:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/rolling-covnerage-build.yml'
- '.github/workflows/rolling-coverage-build.yml'
pull_request:
branches:
- master
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/rolling-covnerage-build.yml'
- '.github/workflows/rolling-coverage-build.yml'

jobs:
coverage_rolling:
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Commonly used and generalized controllers for ros2-control framework that are re

ROS2 Distro | Branch | Build status | Documentation | Released packages
:---------: | :----: | :----------: | :-----------: | :---------------:
**Rolling** | [`rolling`](https://github.com/ros-controls/ros2_controllers/tree/rolling) | [![Rolling Binary Build](https://github.com/ros-controls/ros2_controllers/actions/workflows/rolling-binary-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/ros2_controllers/actions/workflows/rolling-binary-build.yml?branch=master) <br /> [![Rolling Semi-Binary Build](https://github.com/ros-controls/ros2_controllers/actions/workflows/rolling-semi-binary-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/ros2_controllers/actions/workflows/rolling-semi-binary-build.yml?branch=master) | [control.ros.org](https://control.ros.org/master/doc/ros2_controllers/doc/controllers_index.html) | [ros2_controllers](https://index.ros.org/p/ros2_controllers/#rolling)
**Rolling** | [`master`](https://github.com/ros-controls/ros2_controllers/tree/master) | [![Rolling Binary Build](https://github.com/ros-controls/ros2_controllers/actions/workflows/rolling-binary-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/ros2_controllers/actions/workflows/rolling-binary-build.yml?branch=master) <br /> [![Rolling Semi-Binary Build](https://github.com/ros-controls/ros2_controllers/actions/workflows/rolling-semi-binary-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/ros2_controllers/actions/workflows/rolling-semi-binary-build.yml?branch=master) | [control.ros.org](https://control.ros.org/master/doc/ros2_controllers/doc/controllers_index.html) | [ros2_controllers](https://index.ros.org/p/ros2_controllers/#rolling)
**Jazzy** | [`master`](https://github.com/ros-controls/ros2_controllers/tree/master) | [![Jazzy Binary Build](https://github.com/ros-controls/ros2_controllers/actions/workflows/jazzy-binary-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/ros2_controllers/actions/workflows/jazzy-binary-build.yml?branch=master) <br /> [![Jazzy Semi-Binary Build](https://github.com/ros-controls/ros2_controllers/actions/workflows/jazzy-semi-binary-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/ros2_controllers/actions/workflows/jazzy-semi-binary-build.yml?branch=master) | [control.ros.org](https://control.ros.org/jazzy/doc/ros2_controllers/doc/controllers_index.html) | [ros2_controllers](https://index.ros.org/p/ros2_controllers/#jazzy)
**Iron** | [`iron`](https://github.com/ros-controls/ros2_controllers/tree/iron) | [![Iron Binary Build](https://github.com/ros-controls/ros2_controllers/actions/workflows/iron-binary-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/ros2_controllers/actions/workflows/iron-binary-build.yml?branch=master) <br /> [![Iron Semi-Binary Build](https://github.com/ros-controls/ros2_controllers/actions/workflows/iron-semi-binary-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/ros2_controllers/actions/workflows/iron-semi-binary-build.yml?branch=master) | [control.ros.org](https://control.ros.org/iron/doc/ros2_controllers/doc/controllers_index.html) | [ros2_controllers](https://index.ros.org/p/ros2_controllers/#iron)
**Humble** | [`humble`](https://github.com/ros-controls/ros2_controllers/tree/humble) | [![Humble Binary Build](https://github.com/ros-controls/ros2_controllers/actions/workflows/humble-binary-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/ros2_controllers/actions/workflows/humble-binary-build.yml?branch=master) <br /> [![Humble Semi-Binary Build](https://github.com/ros-controls/ros2_controllers/actions/workflows/humble-semi-binary-build.yml/badge.svg?branch=master)](https://github.com/ros-controls/ros2_controllers/actions/workflows/humble-semi-binary-build.yml?branch=master) | [control.ros.org](https://control.ros.org/humble/doc/ros2_controllers/doc/controllers_index.html) | [ros2_controllers](https://index.ros.org/p/ros2_controllers/#humble)

Expand Down
5 changes: 5 additions & 0 deletions ros2_controllers-not-released.jazzy.repos
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
repositories:
generate_parameter_library:
type: git
url: https://github.com/picknikrobotics/generate_parameter_library.git
version: main
25 changes: 25 additions & 0 deletions ros2_controllers.jazzy.repos
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
repositories:
ros2_control:
type: git
url: https://github.com/ros-controls/ros2_control.git
version: master
realtime_tools:
type: git
url: https://github.com/ros-controls/realtime_tools.git
version: master
control_msgs:
type: git
url: https://github.com/ros-controls/control_msgs.git
version: master
control_toolbox:
type: git
url: https://github.com/ros-controls/control_toolbox.git
version: ros2-master
kinematics_interface:
type: git
url: https://github.com/ros-controls/kinematics_interface.git
version: master
generate_parameter_library:
type: git
url: https://github.com/picknikrobotics/generate_parameter_library.git
version: main

0 comments on commit 71e59b1

Please sign in to comment.