Skip to content

Commit de70f72

Browse files
authored
Branch off kilted 🌿 (backport #1945) (#1952)
1 parent f447716 commit de70f72

24 files changed

+443
-13
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,17 @@ updates:
1818
schedule:
1919
interval: "weekly"
2020
target-branch: "humble"
21+
- package-ecosystem: "github-actions"
22+
# Workflow files stored in the
23+
# default location of `.github/workflows`
24+
directory: "/"
25+
schedule:
26+
interval: "weekly"
27+
target-branch: "jazzy"
28+
- package-ecosystem: "github-actions"
29+
# Workflow files stored in the
30+
# default location of `.github/workflows`
31+
directory: "/"
32+
schedule:
33+
interval: "weekly"
34+
target-branch: "kilted"

.github/mergify.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ pull_request_rules:
1717
branches:
1818
- jazzy
1919

20+
- name: Backport to kilted at reviewers discretion
21+
conditions:
22+
- base=master
23+
- "label=backport-kilted"
24+
actions:
25+
backport:
26+
branches:
27+
- kilted
28+
2029
- name: Ask to resolve conflict
2130
conditions:
2231
- conflict
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Kilted - ABI Compatibility Check
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
branches:
6+
- kilted
7+
paths:
8+
- '**.hpp'
9+
- '**.h'
10+
- '**.cpp'
11+
- '**.yaml'
12+
- '.github/workflows/kilted-abi-compatibility.yml'
13+
- '**/package.xml'
14+
- '**/CMakeLists.txt'
15+
- 'ros2_controllers-not-released.kilted.repos'
16+
- '**.xml'
17+
18+
concurrency:
19+
# cancel previous runs of the same workflow, except for pushes on given branches
20+
group: ${{ github.workflow }}-${{ github.ref }}
21+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
22+
23+
jobs:
24+
abi_check:
25+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-abi-check.yml@master
26+
with:
27+
ros_distro: kilted
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Kilted Binary Build
2+
# author: Denis Štogl <[email protected]>
3+
# description: 'Build & test all dependencies from released (binary) packages.'
4+
5+
on:
6+
workflow_dispatch:
7+
pull_request:
8+
branches:
9+
- kilted
10+
- '*feature*'
11+
- '*feature/**'
12+
paths:
13+
- '**.hpp'
14+
- '**.h'
15+
- '**.cpp'
16+
- '**.py'
17+
- '**.yaml'
18+
- '.github/workflows/kilted-binary-build.yml'
19+
- '**/package.xml'
20+
- '**/CMakeLists.txt'
21+
- 'ros2_controllers-not-released.kilted.repos'
22+
- '**.xml'
23+
push:
24+
branches:
25+
- kilted
26+
paths:
27+
- '**.hpp'
28+
- '**.h'
29+
- '**.cpp'
30+
- '**.yaml'
31+
- '.github/workflows/kilted-binary-build.yml'
32+
- '**/package.xml'
33+
- '**/CMakeLists.txt'
34+
- 'ros2_controllers-not-released.kilted.repos'
35+
- '**.xml'
36+
schedule:
37+
# Run every morning to detect flakiness and broken dependencies
38+
- cron: '03 1 * * MON-FRI'
39+
40+
concurrency:
41+
# cancel previous runs of the same workflow, except for pushes on given branches
42+
group: ${{ github.workflow }}-${{ github.ref }}
43+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
44+
45+
jobs:
46+
binary:
47+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master
48+
strategy:
49+
fail-fast: false
50+
matrix:
51+
ROS_REPO: [main, testing]
52+
with:
53+
ros_distro: kilted
54+
ros_repo: ${{ matrix.ROS_REPO }}
55+
upstream_workspace: ros2_controllers-not-released.kilted.repos
56+
ref_for_scheduled_build: kilted
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Kilted Check Docs
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
branches:
7+
- kilted
8+
paths:
9+
- '**.rst'
10+
- '**.md'
11+
- '**.jpg'
12+
- '**.jpeg'
13+
- '**.png'
14+
- '**.svg'
15+
- '**.yml'
16+
- '**.yaml'
17+
- '!.github/**' # exclude yaml files in .github directory
18+
- '.github/workflows/kilted-check-docs.yml'
19+
20+
concurrency:
21+
group: ${{ github.workflow }}-${{ github.ref }}
22+
cancel-in-progress: true
23+
24+
jobs:
25+
check-docs:
26+
name: Check Docs
27+
uses: ros-controls/control.ros.org/.github/workflows/reusable-sphinx-check-single-version.yml@kilted
28+
with:
29+
ROS2_CONTROLLERS_PR: ${{ github.ref }}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Coverage Build - Kilted
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- kilted
7+
paths:
8+
- '**.hpp'
9+
- '**.h'
10+
- '**.cpp'
11+
- '.github/workflows/kilted-coverage-build.yml'
12+
- '**.yaml'
13+
- '**/package.xml'
14+
- '**/CMakeLists.txt'
15+
- 'codecov.yml'
16+
- '**/package.xml'
17+
- '**/CMakeLists.txt'
18+
- 'ros2_controllers.kilted.repos'
19+
pull_request:
20+
branches:
21+
- kilted
22+
paths:
23+
- '**.hpp'
24+
- '**.h'
25+
- '**.cpp'
26+
- '.github/workflows/kilted-coverage-build.yml'
27+
- '**.yaml'
28+
- '**/package.xml'
29+
- '**/CMakeLists.txt'
30+
- 'codecov.yml'
31+
- '**/package.xml'
32+
- '**/CMakeLists.txt'
33+
- 'ros2_controllers.kilted.repos'
34+
35+
concurrency:
36+
# cancel previous runs of the same workflow, except for pushes on given branches
37+
group: ${{ github.workflow }}-${{ github.ref }}
38+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
39+
40+
jobs:
41+
coverage_kilted:
42+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-build-coverage.yml@master
43+
secrets: inherit
44+
with:
45+
ros_distro: kilted
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Kilted - Debian Semi-Binary Build
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
branches:
6+
- kilted
7+
paths:
8+
- '**.hpp'
9+
- '**.h'
10+
- '**.cpp'
11+
- '**.py'
12+
- '**.yaml'
13+
- '.github/workflows/kilted-debian-build.yml'
14+
- '**/package.xml'
15+
- '**/CMakeLists.txt'
16+
- 'ros2_controllers.kilted.repos'
17+
- '**.xml'
18+
schedule:
19+
# Run every day to detect flakiness and broken dependencies
20+
- cron: '03 1 * * MON-FRI'
21+
22+
concurrency:
23+
# cancel previous runs of the same workflow, except for pushes on given branches
24+
group: ${{ github.workflow }}-${{ github.ref }}
25+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
26+
27+
jobs:
28+
debian_semi_binary_build:
29+
name: Rolling debian build
30+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-debian-build.yml@master
31+
with:
32+
ros_distro: kilted
33+
upstream_workspace: ros2_controllers.kilted.repos
34+
ref_for_scheduled_build: kilted
35+
skip_packages: rqt_joint_trajectory_controller
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Pre-Commit - Kilted
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
branches:
7+
- kilted
8+
push:
9+
branches:
10+
- kilted
11+
12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
cancel-in-progress: true
15+
16+
jobs:
17+
pre-commit:
18+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-pre-commit.yml@master
19+
with:
20+
ros_distro: kilted
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Kilted - pre-release
2+
# author: Christoph Froehlich <[email protected]>
3+
4+
on:
5+
workflow_dispatch:
6+
inputs:
7+
downstream_depth:
8+
description: 'The depth of the depends-on tree to be included in the overlay workspace (-1 implies unlimited, default: 0)'
9+
required: false
10+
default: 0
11+
type: number
12+
pull_request:
13+
branches:
14+
- kilted
15+
types:
16+
- opened # default
17+
- reopened # default
18+
- synchronize # default
19+
- labeled # also if a label changes
20+
21+
jobs:
22+
default:
23+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-prerelease.yml@master
24+
with:
25+
ros_distro: kilted
26+
# downstream_depth is not set on pull_request event
27+
prerelease_downstream_depth: ${{ github.event_name == 'pull_request' && '0' || inputs.downstream_depth }}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Kilted - RHEL Semi-Binary Build
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
branches:
6+
- kilted
7+
paths:
8+
- '**.hpp'
9+
- '**.h'
10+
- '**.cpp'
11+
- '**.py'
12+
- '**.yaml'
13+
- '.github/workflows/kilted-rhel-semi-binary-build.yml'
14+
- '**/package.xml'
15+
- '**/CMakeLists.txt'
16+
- 'ros2_controllers.kilted.repos'
17+
- '**.xml'
18+
schedule:
19+
# Run every day to detect flakiness and broken dependencies
20+
- cron: '03 1 * * MON-FRI'
21+
22+
concurrency:
23+
# cancel previous runs of the same workflow, except for pushes on given branches
24+
group: ${{ github.workflow }}-${{ github.ref }}
25+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
26+
27+
jobs:
28+
rhel_semi_binary_build:
29+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-rhel-binary-build.yml@master
30+
with:
31+
ros_distro: kilted
32+
upstream_workspace: ros2_controllers.kilted.repos
33+
ref_for_scheduled_build: kilted
34+
skip_packages: rqt_joint_trajectory_controller

0 commit comments

Comments
 (0)