Skip to content

Add Kilted Kaiju #1646

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ pull_request_rules:
branches:
- humble

- name: Backport to jazzy at reviewers discretion
conditions:
- base=master
- "label=backport-jazzy"
actions:
backport:
branches:
- jazzy

- name: Ask to resolve conflict
conditions:
- conflict
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/humble-source-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,4 @@ jobs:
with:
ros_distro: humble
ref: humble
ros2_repo_branch: humble
os_name: ubuntu-22.04
4 changes: 2 additions & 2 deletions .github/workflows/jazzy-abi-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
pull_request:
branches:
- master
- jazzy
paths:
- '**.hpp'
- '**.h'
Expand All @@ -16,7 +16,7 @@ on:
- '**.xml'

concurrency:
# cancel previous runs of the same workflow, except for pushes on master branch
# cancel previous runs of the same workflow, except for pushes on jazzy branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/jazzy-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
pull_request:
branches:
- master
- jazzy
- '*feature*'
- '*feature/**'
paths:
Expand All @@ -22,7 +22,7 @@ on:
- '**.xml'
push:
branches:
- master
- jazzy
paths:
- '**.hpp'
- '**.h'
Expand All @@ -38,7 +38,7 @@ on:
- cron: '03 1 * * *'

concurrency:
# cancel previous runs of the same workflow, except for pushes on master branch
# cancel previous runs of the same workflow, except for pushes on jazzy branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }}

Expand All @@ -53,4 +53,4 @@ jobs:
ros_distro: jazzy
ros_repo: ${{ matrix.ROS_REPO }}
upstream_workspace: ros2_controllers-not-released.jazzy.repos
ref_for_scheduled_build: master
ref_for_scheduled_build: jazzy
2 changes: 1 addition & 1 deletion .github/workflows/jazzy-check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
pull_request:
branches:
- master
- jazzy
paths:
- '**.rst'
- '**.md'
Expand Down
63 changes: 31 additions & 32 deletions .github/workflows/jazzy-coverage-build.yml
Original file line number Diff line number Diff line change
@@ -1,40 +1,39 @@
name: Coverage Build - Jazzy
on:
workflow_dispatch:
# TODO(anyone) activate when branched for Jazzy
# push:
# branches:
# - master
# paths:
# - '**.hpp'
# - '**.h'
# - '**.cpp'
# - '.github/workflows/jazzy-coverage-build.yml'
# - '**.yaml'
# - '**/package.xml'
# - '**/CMakeLists.txt'
# - 'codecov.yml'
# - '**/package.xml'
# - '**/CMakeLists.txt'
# - 'ros2_controllers.jazzy.repos'
# pull_request:
# branches:
# - master
# paths:
# - '**.hpp'
# - '**.h'
# - '**.cpp'
# - '.github/workflows/jazzy-coverage-build.yml'
# - '**.yaml'
# - '**/package.xml'
# - '**/CMakeLists.txt'
# - 'codecov.yml'
# - '**/package.xml'
# - '**/CMakeLists.txt'
# - 'ros2_controllers.jazzy.repos'
push:
branches:
- jazzy
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/jazzy-coverage-build.yml'
- '**.yaml'
- '**/package.xml'
- '**/CMakeLists.txt'
- 'codecov.yml'
- '**/package.xml'
- '**/CMakeLists.txt'
- 'ros2_controllers.jazzy.repos'
pull_request:
branches:
- jazzy
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '.github/workflows/jazzy-coverage-build.yml'
- '**.yaml'
- '**/package.xml'
- '**/CMakeLists.txt'
- 'codecov.yml'
- '**/package.xml'
- '**/CMakeLists.txt'
- 'ros2_controllers.jazzy.repos'

concurrency:
# cancel previous runs of the same workflow, except for pushes on master branch
# cancel previous runs of the same workflow, except for pushes on jazzy branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/jazzy-debian-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
pull_request:
branches:
- master
- jazzy
paths:
- '**.hpp'
- '**.h'
Expand All @@ -20,7 +20,7 @@ on:
- cron: '03 1 * * *'

concurrency:
# cancel previous runs of the same workflow, except for pushes on master branch
# cancel previous runs of the same workflow, except for pushes on jazzy branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }}

Expand All @@ -31,5 +31,5 @@ jobs:
with:
ros_distro: jazzy
upstream_workspace: ros2_controllers.jazzy.repos
ref_for_scheduled_build: master
ref_for_scheduled_build: jazzy
skip_packages: rqt_joint_trajectory_controller
2 changes: 1 addition & 1 deletion .github/workflows/jazzy-pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
pull_request:
branches:
- master
- jazzy

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/jazzy-rhel-semi-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
pull_request:
branches:
- master
- jazzy
paths:
- '**.hpp'
- '**.h'
Expand All @@ -20,7 +20,7 @@ on:
- cron: '03 1 * * *'

concurrency:
# cancel previous runs of the same workflow, except for pushes on master branch
# cancel previous runs of the same workflow, except for pushes on jazzy branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }}

Expand All @@ -30,5 +30,5 @@ jobs:
with:
ros_distro: jazzy
upstream_workspace: ros2_controllers.jazzy.repos
ref_for_scheduled_build: master
ref_for_scheduled_build: jazzy
skip_packages: rqt_joint_trajectory_controller
10 changes: 5 additions & 5 deletions .github/workflows/jazzy-semi-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch:
pull_request:
branches:
- master
- jazzy
- '*feature*'
- '*feature/**'
paths:
Expand All @@ -21,7 +21,7 @@ on:
- '**.xml'
push:
branches:
- master
- jazzy
paths:
- '**.hpp'
- '**.h'
Expand All @@ -38,7 +38,7 @@ on:
- cron: '33 1 * * *'

concurrency:
# cancel previous runs of the same workflow, except for pushes on master branch
# cancel previous runs of the same workflow, except for pushes on jazzy branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }}

Expand All @@ -49,14 +49,14 @@ jobs:
ros_distro: jazzy
ros_repo: testing
upstream_workspace: ros2_controllers.jazzy.repos
ref_for_scheduled_build: master
ref_for_scheduled_build: jazzy
semi_binary_clang:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master
with:
ros_distro: jazzy
ros_repo: testing
upstream_workspace: ros2_controllers.jazzy.repos
ref_for_scheduled_build: master
ref_for_scheduled_build: jazzy
additional_debs: clang
c_compiler: clang
cxx_compiler: clang++
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/jazzy-semi-binary-downstream-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
pull_request:
branches:
- master
- jazzy
paths:
- '**.hpp'
- '**.h'
Expand All @@ -29,7 +29,7 @@ jobs:
with:
ros_distro: jazzy
ros_repo: testing
ref_for_scheduled_build: master
ref_for_scheduled_build: jazzy
upstream_workspace: ros2_controllers.jazzy.repos
# we don't test this repository, we just build it
not_test_build: true
Expand All @@ -41,7 +41,7 @@ jobs:
with:
ros_distro: jazzy
ros_repo: testing
ref_for_scheduled_build: master
ref_for_scheduled_build: jazzy
upstream_workspace: ros2_controllers.jazzy.repos
# we don't test this repository, we just build it
not_test_build: true
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/jazzy-source-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
push:
branches:
- master
- jazzy
paths:
- '**.hpp'
- '**.h'
Expand All @@ -24,6 +24,5 @@ jobs:
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
ref: jazzy
container: ubuntu:24.04
7 changes: 6 additions & 1 deletion .github/workflows/rolling-abi-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
- '**/package.xml'
- '**/CMakeLists.txt'
- 'ros2_controllers-not-released.rolling.repos'
- 'ros2_controllers-not-released.kilted.repos'
- '**.xml'

concurrency:
Expand All @@ -23,5 +24,9 @@ concurrency:
jobs:
abi_check:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-abi-check.yml@master
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [kilted, rolling]
with:
ros_distro: rolling
ros_distro: ${{ matrix.ROS_DISTRO }}
7 changes: 5 additions & 2 deletions .github/workflows/rolling-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ on:
- '**/package.xml'
- '**/CMakeLists.txt'
- 'ros2_controllers-not-released.rolling.repos'
- 'ros2_controllers-not-released.kilted.repos'
- '**.xml'
push:
branches:
Expand All @@ -33,6 +34,7 @@ on:
- '**/package.xml'
- '**/CMakeLists.txt'
- 'ros2_controllers-not-released.rolling.repos'
- 'ros2_controllers-not-released.kilted.repos'
- '**.xml'
schedule:
# Run every morning to detect flakiness and broken dependencies
Expand All @@ -49,9 +51,10 @@ jobs:
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [kilted, rolling]
ROS_REPO: [main, testing]
with:
ros_distro: rolling
ros_distro: ${{ matrix.ROS_DISTRO }}
ros_repo: ${{ matrix.ROS_REPO }}
upstream_workspace: ros2_controllers-not-released.rolling.repos
upstream_workspace: ros2_controllers-not-released.${{ matrix.ROS_DISTRO }}.repos
ref_for_scheduled_build: master
50 changes: 50 additions & 0 deletions .github/workflows/rolling-compatibility-kilted-binary-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Check Rolling Compatibility on Kilted
# author: Christoph Froehlich <[email protected]>
# description: 'Build & test the rolling version on Kilted distro.'

on:
workflow_dispatch:
pull_request:
branches:
- master
- '*feature*'
- '*feature/**'
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '**.py'
- '**.yaml'
- '.github/workflows/rolling-compatibility-kilted-binary-build.yml'
- '**/package.xml'
- '**/CMakeLists.txt'
- 'ros2_controllers.rolling.repos'
- '**.xml'
push:
branches:
- master
paths:
- '**.hpp'
- '**.h'
- '**.cpp'
- '**.py'
- '**.yaml'
- '.github/workflows/rolling-compatibility-kilted-binary-build.yml'
- '**/package.xml'
- '**/CMakeLists.txt'
- 'ros2_controllers.rolling.repos'
- '**.xml'

concurrency:
# cancel previous runs of the same workflow, except for pushes on master branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }}

jobs:
build-on-kilted:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master
with:
ros_distro: kilted
ros_repo: testing
upstream_workspace: ros2_controllers.rolling.repos
ref_for_scheduled_build: master
Loading
Loading