Skip to content

Commit 60a0166

Browse files
christophfroehlichmergify[bot]
authored andcommitted
Branch off kilted 🌿 (#417)
(cherry picked from commit 4303f5b)
1 parent 43975a3 commit 60a0166

26 files changed

+342
-13
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ updates:
1111
directory: "/"
1212
schedule:
1313
interval: "weekly"
14+
- package-ecosystem: "github-actions"
15+
# Workflow files stored in the
16+
# default location of `.github/workflows`
17+
directory: "/"
18+
schedule:
19+
interval: "weekly"
20+
target-branch: "kilted"
1421
- package-ecosystem: "github-actions"
1522
# Workflow files stored in the
1623
# default location of `.github/workflows`

.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: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Kilted ABI Compatibility Check
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
branches:
6+
- kilted
7+
8+
concurrency:
9+
# cancel previous runs of the same workflow, except for pushes on given branches
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
12+
13+
jobs:
14+
abi_check:
15+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-abi-check.yml@master
16+
with:
17+
ros_distro: kilted
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
push:
11+
branches:
12+
- kilted
13+
schedule:
14+
# Run every morning to detect flakiness and broken dependencies
15+
- cron: '03 1 * * MON-FRI'
16+
17+
concurrency:
18+
# cancel previous runs of the same workflow, except for pushes on given branches
19+
group: ${{ github.workflow }}-${{ github.ref }}
20+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
21+
22+
jobs:
23+
binary:
24+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master
25+
strategy:
26+
fail-fast: false
27+
matrix:
28+
ROS_DISTRO: [kilted]
29+
ROS_REPO: [main, testing]
30+
with:
31+
ros_distro: ${{ matrix.ROS_DISTRO }}
32+
ros_repo: ${{ matrix.ROS_REPO }}
33+
ref_for_scheduled_build: kilted
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Kilted Downstream Build
2+
# description: 'Build & test downstream packages from source.'
3+
# author: Christoph Froehlich <[email protected]>
4+
5+
on:
6+
workflow_dispatch:
7+
pull_request:
8+
branches:
9+
- kilted
10+
push:
11+
branches:
12+
- kilted
13+
14+
concurrency:
15+
# cancel previous runs of the same workflow, except for pushes on given branches
16+
group: ${{ github.workflow }}-${{ github.ref }}
17+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
18+
19+
jobs:
20+
build-downstream:
21+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master
22+
with:
23+
ros_distro: kilted
24+
ros_repo: testing
25+
ref_for_scheduled_build: kilted
26+
not_test_build: true
27+
downstream_workspace: ros_controls.kilted.repos
28+
not_test_downstream: true
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+
REALTIME_TOOLS_PR: ${{ github.ref }}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Kilted Coverage Build
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- kilted
7+
pull_request:
8+
branches:
9+
- kilted
10+
11+
concurrency:
12+
# cancel previous runs of the same workflow, except for pushes on given branches
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
15+
16+
jobs:
17+
coverage:
18+
name: coverage build
19+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-build-coverage.yml@master
20+
secrets: inherit
21+
with:
22+
ros_distro: kilted
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Kilted - Debian Semi-Binary Build
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
branches:
6+
- kilted
7+
schedule:
8+
# Run every day to detect flakiness and broken dependencies
9+
- cron: '33 2 * * MON-FRI'
10+
11+
concurrency:
12+
# cancel previous runs of the same workflow, except for pushes on given branches
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/heads') }}
15+
16+
jobs:
17+
debian_semi_binary_build:
18+
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-debian-build.yml@master
19+
with:
20+
ros_distro: kilted
21+
upstream_workspace: realtime_tools.kilted.repos
22+
ref_for_scheduled_build: kilted
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Kilted Pre-Commit
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 }}

0 commit comments

Comments
 (0)