Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/humble-abi-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Humble - ABI Compatibility Check
on:
workflow_dispatch:
branches:
- main
- humble
pull_request:
branches:
- main
- humble

jobs:
abi_check:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/humble-binary-build-main.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: Humble Binary Build - main
name: Humble Binary Build - humble
# author: Denis Štogl <denis@stoglrobotics.de>
# description: 'Build & test all dependencies from released (binary) packages.'

on:
workflow_dispatch:
branches:
- main
- humble
pull_request:
branches:
- main
- humble
push:
branches:
- main
- humble
schedule:
# Run every morning to detect flakiness and broken dependencies
- cron: '03 1 * * *'
Expand All @@ -23,4 +23,4 @@ jobs:
ros_distro: humble
ros_repo: main
upstream_workspace: picknik_controllers-not-released.humble.repos
ref_for_scheduled_build: main
ref_for_scheduled_build: humble
8 changes: 4 additions & 4 deletions .github/workflows/humble-binary-build-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ name: Humble Binary Build - testing
on:
workflow_dispatch:
branches:
- main
- humble
pull_request:
branches:
- main
- humble
push:
branches:
- main
- humble
schedule:
# Run every morning to detect flakiness and broken dependencies
- cron: '03 1 * * *'
Expand All @@ -23,4 +23,4 @@ jobs:
ros_distro: humble
ros_repo: testing
upstream_workspace: picknik_controllers-not-released.humble.repos
ref_for_scheduled_build: main
ref_for_scheduled_build: humble
12 changes: 6 additions & 6 deletions .github/workflows/humble-semi-binary-build-main.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: Humble Semi-Binary Build - main
# description: 'Build & test that compiles the main dependencies from source.'
name: Humble Semi-Binary Build - humble
# description: 'Build & test that compiles the humble dependencies from source.'

on:
workflow_dispatch:
branches:
- main
- humble
pull_request:
branches:
- main
- humble
push:
branches:
- main
- humble
schedule:
# Run every morning to detect flakiness and broken dependencies
- cron: '33 1 * * *'
Expand All @@ -22,4 +22,4 @@ jobs:
ros_distro: humble
ros_repo: main
upstream_workspace: picknik_controllers.humble.repos
ref_for_scheduled_build: main
ref_for_scheduled_build: humble
10 changes: 5 additions & 5 deletions .github/workflows/humble-semi-binary-build-testing.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: Humble Semi-Binary Build - testing
# description: 'Build & test that compiles the main dependencies from source.'
# description: 'Build & test that compiles the humble dependencies from source.'

on:
workflow_dispatch:
branches:
- main
- humble
pull_request:
branches:
- main
- humble
push:
branches:
- main
- humble
schedule:
# Run every morning to detect flakiness and broken dependencies
- cron: '33 1 * * *'
Expand All @@ -22,4 +22,4 @@ jobs:
ros_distro: humble
ros_repo: testing
upstream_workspace: picknik_controllers.humble.repos
ref_for_scheduled_build: main
ref_for_scheduled_build: humble
6 changes: 3 additions & 3 deletions .github/workflows/humble-source-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Humble Source Build
on:
workflow_dispatch:
branches:
- main
- humble
push:
branches:
- main
- humble
schedule:
# Run every day to detect flakiness and broken dependencies
- cron: '03 3 * * *'
Expand All @@ -15,5 +15,5 @@ jobs:
uses: ./.github/workflows/reusable-ros-tooling-source-build.yml
with:
ros_distro: humble
ref: main
ref: humble
ros2_repo_branch: humble
20 changes: 20 additions & 0 deletions .github/workflows/kilted-abi-compatibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Kilted - ABI Compatibility Check
on:
workflow_dispatch:
branches:
- main
pull_request:
branches:
- main

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

on:
workflow_dispatch:
branches:
- main
pull_request:
branches:
- main
push:
branches:
- main
schedule:
# Run every morning to detect flakiness and broken dependencies
- cron: '03 1 * * *'

jobs:
binary:
uses: ./.github/workflows/reusable-industrial-ci-with-cache.yml
with:
ros_distro: kilted
ros_repo: main
upstream_workspace: picknik_controllers-not-released.kilted.repos
ref_for_scheduled_build: main
26 changes: 26 additions & 0 deletions .github/workflows/kilted-binary-build-testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Kilted Binary Build - testing
# author: Denis Štogl <denis@stoglrobotics.de>
# description: 'Build & test all dependencies from released (binary) packages.'

on:
workflow_dispatch:
branches:
- main
pull_request:
branches:
- main
push:
branches:
- main
schedule:
# Run every morning to detect flakiness and broken dependencies
- cron: '03 1 * * *'

jobs:
binary:
uses: ./.github/workflows/reusable-industrial-ci-with-cache.yml
with:
ros_distro: kilted
ros_repo: testing
upstream_workspace: picknik_controllers-not-released.kilted.repos
ref_for_scheduled_build: main
25 changes: 25 additions & 0 deletions .github/workflows/kilted-semi-binary-build-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Kilted Semi-Binary Build - main
# description: 'Build & test that compiles the main dependencies from source.'

on:
workflow_dispatch:
branches:
- main
pull_request:
branches:
- main
push:
branches:
- main
schedule:
# Run every morning to detect flakiness and broken dependencies
- cron: '33 1 * * *'

jobs:
semi_binary:
uses: ./.github/workflows/reusable-industrial-ci-with-cache.yml
with:
ros_distro: kilted
ros_repo: main
upstream_workspace: picknik_controllers.kilted.repos
ref_for_scheduled_build: main
25 changes: 25 additions & 0 deletions .github/workflows/kilted-semi-binary-build-testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Kilted Semi-Binary Build - testing
# description: 'Build & test that compiles the main dependencies from source.'

on:
workflow_dispatch:
branches:
- main
pull_request:
branches:
- main
push:
branches:
- main
schedule:
# Run every morning to detect flakiness and broken dependencies
- cron: '33 1 * * *'

jobs:
semi_binary:
uses: ./.github/workflows/reusable-industrial-ci-with-cache.yml
with:
ros_distro: kilted
ros_repo: testing
upstream_workspace: picknik_controllers.kilted.repos
ref_for_scheduled_build: main
19 changes: 19 additions & 0 deletions .github/workflows/kilted-source-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Kilted Source Build
on:
workflow_dispatch:
branches:
- main
push:
branches:
- main
schedule:
# Run every day to detect flakiness and broken dependencies
- cron: '03 3 * * *'

jobs:
source:
uses: ./.github/workflows/reusable-ros-tooling-source-build.yml
with:
ros_distro: kilted
ref: main
ros2_repo_branch: kilted
6 changes: 6 additions & 0 deletions picknik_controllers-not-released.kilted.repos
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
repositories:
## EXAMPLE DEPENDENCY
# <some_ros_package>:
# type: git
# url: git@github.com:<some_github_namespace>/<some_ros_package>.git
# version: master
6 changes: 6 additions & 0 deletions picknik_controllers.kilted.repos
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
repositories:
## EXAMPLE DEPENDENCY
# <some_ros_package>:
# type: git
# url: git@github.com:<some_github_namespace>/<some_ros_package>.git
# version: master
Loading