-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
16 changed files
with
507 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Jazzy - ABI Compatibility Check | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- '**.hpp' | ||
- '**.h' | ||
- '**.cpp' | ||
- '**.py' | ||
- '.github/workflows/jazzy-abi-compatibility.yml' | ||
- '**/package.xml' | ||
- '**/CMakeLists.txt' | ||
- 'ros2_control-not-released.jazzy.repos' | ||
|
||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Jazzy Binary Build | ||
# author: Denis Štogl <denis@stoglrobotics.de> | ||
# description: 'Build & test all dependencies from released (binary) packages.' | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- '**.hpp' | ||
- '**.h' | ||
- '**.cpp' | ||
- '**.py' | ||
- '.github/workflows/jazzy-binary-build.yml' | ||
- '**/package.xml' | ||
- '**/CMakeLists.txt' | ||
- 'ros2_control-not-released.jazzy.repos' | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- '**.hpp' | ||
- '**.h' | ||
- '**.cpp' | ||
- '**.py' | ||
- '.github/workflows/jazzy-binary-build.yml' | ||
- '**/package.xml' | ||
- '**/CMakeLists.txt' | ||
- 'ros2_control-not-released.jazzy.repos' | ||
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_DISTRO: [jazzy] | ||
ROS_REPO: [main, testing] | ||
with: | ||
ros_distro: ${{ matrix.ROS_DISTRO }} | ||
ros_repo: ${{ matrix.ROS_REPO }} | ||
upstream_workspace: ros2_control-not-released.${{ matrix.ROS_DISTRO }}.repos | ||
ref_for_scheduled_build: master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Jazzy Check Docs | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- '**.rst' | ||
- '**.md' | ||
- '**.yaml' | ||
|
||
jobs: | ||
check-docs: | ||
name: Check Docs | ||
uses: ros-controls/control.ros.org/.github/workflows/reusable-sphinx-check-single-version.yml@jazzy | ||
with: | ||
ROS2_CONTROL_PR: ${{ github.ref }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
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' | ||
# - '**/package.xml' | ||
# - '**/CMakeLists.txt' | ||
# - 'ros2_control.jazzy.repos' | ||
# - 'codecov.yml' | ||
# pull_request: | ||
# branches: | ||
# - master | ||
# paths: | ||
# - '**.hpp' | ||
# - '**.h' | ||
# - '**.cpp' | ||
# - '.github/workflows/jazzy-coverage-build.yml' | ||
# - '**/package.xml' | ||
# - '**/CMakeLists.txt' | ||
# - 'ros2_control.jazzy.repos' | ||
# - 'codecov.yml' | ||
|
||
jobs: | ||
coverage_jazzy: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-build-coverage.yml@master | ||
secrets: inherit | ||
with: | ||
ros_distro: jazzy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Debian Jazzy Source Build | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- '**.hpp' | ||
- '**.h' | ||
- '**.cpp' | ||
- '**.py' | ||
- '.github/workflows/jazzy-debian-build.yml' | ||
- '**/package.xml' | ||
- '**/CMakeLists.txt' | ||
- 'ros2_control.jazzy.repos' | ||
schedule: | ||
# Run every day to detect flakiness and broken dependencies | ||
- cron: '03 1 * * *' | ||
|
||
|
||
jobs: | ||
debian_source_build: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-debian-build.yml@master | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ROS_DISTRO: [jazzy] | ||
with: | ||
ros_distro: ${{ matrix.ROS_DISTRO }} | ||
upstream_workspace: ros2_control.${{ matrix.ROS_DISTRO }}.repos | ||
ref_for_scheduled_build: master | ||
skip_packages: rqt_controller_manager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: RHEL Jazzy Semi-Binary Build | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- '**.hpp' | ||
- '**.h' | ||
- '**.cpp' | ||
- '**.py' | ||
- '.github/workflows/jazzy-rhel-binary-build.yml' | ||
- '**/package.xml' | ||
- '**/CMakeLists.txt' | ||
- 'ros2_control.jazzy.repos' | ||
schedule: | ||
# Run every day to detect flakiness and broken dependencies | ||
- cron: '03 1 * * *' | ||
|
||
jobs: | ||
rhel_semi_binary_build: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-rhel-binary-build.yml@master | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ROS_DISTRO: [jazzy] | ||
with: | ||
ros_distro: ${{ matrix.ROS_DISTRO }} | ||
upstream_workspace: ros2_control.${{ matrix.ROS_DISTRO }}.repos | ||
ref_for_scheduled_build: master | ||
skip_packages: rqt_controller_manager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Jazzy Semi-Binary Build | ||
# author: Denis Štogl <denis@stoglrobotics.de> | ||
# description: 'Build & test all dependencies from released (binary) packages.' | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- '**.hpp' | ||
- '**.h' | ||
- '**.cpp' | ||
- '**.py' | ||
- '.github/workflows/jazzy-semi-binary-build.yml' | ||
- '**/package.xml' | ||
- '**/CMakeLists.txt' | ||
- 'ros2_control.jazzy.repos' | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- '**.hpp' | ||
- '**.h' | ||
- '**.cpp' | ||
- '**.py' | ||
- '.github/workflows/jazzy-semi-binary-build.yml' | ||
- '**/package.xml' | ||
- '**/CMakeLists.txt' | ||
- 'ros2_control.jazzy.repos' | ||
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_DISTRO: [jazzy] | ||
ROS_REPO: [main, testing] | ||
with: | ||
ros_distro: ${{ matrix.ROS_DISTRO }} | ||
ros_repo: ${{ matrix.ROS_REPO }} | ||
upstream_workspace: ros2_control.${{ matrix.ROS_DISTRO }}.repos | ||
ref_for_scheduled_build: master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Jazzy Source Build | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- '**.hpp' | ||
- '**.h' | ||
- '**.cpp' | ||
- '**.py' | ||
- '.github/workflows/jazzy-source-build.yml' | ||
- '**/package.xml' | ||
- '**/CMakeLists.txt' | ||
- 'ros2_control.jazzy.repos' | ||
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: master | ||
container: ubuntu:24.04 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Rolling - ABI Compatibility Check | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- '**.hpp' | ||
- '**.h' | ||
- '**.cpp' | ||
- '**.py' | ||
- '.github/workflows/rolling-abi-compatibility.yml' | ||
- '**/package.xml' | ||
- '**/CMakeLists.txt' | ||
- 'ros2_control-not-released.rolling.repos' | ||
|
||
jobs: | ||
abi_check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ros-industrial/industrial_ci@master | ||
env: | ||
ROS_DISTRO: rolling | ||
ROS_REPO: testing | ||
ABICHECK_URL: github:${{ github.repository }}#${{ github.base_ref }} | ||
NOT_TEST_BUILD: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Rolling Binary Build | ||
# author: Denis Štogl <denis@stoglrobotics.de> | ||
# description: 'Build & test all dependencies from released (binary) packages.' | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- '**.hpp' | ||
- '**.h' | ||
- '**.cpp' | ||
- '**.py' | ||
- '.github/workflows/rolling-binary-build.yml' | ||
- '**/package.xml' | ||
- '**/CMakeLists.txt' | ||
- 'ros2_control-not-released.rolling.repos' | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- '**.hpp' | ||
- '**.h' | ||
- '**.cpp' | ||
- '**.py' | ||
- '.github/workflows/rolling-binary-build.yml' | ||
- '**/package.xml' | ||
- '**/CMakeLists.txt' | ||
- 'ros2_control-not-released.rolling.repos' | ||
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_DISTRO: [rolling] | ||
ROS_REPO: [main, testing] | ||
with: | ||
ros_distro: ${{ matrix.ROS_DISTRO }} | ||
ros_repo: ${{ matrix.ROS_REPO }} | ||
upstream_workspace: ros2_control-not-released.${{ matrix.ROS_DISTRO }}.repos | ||
ref_for_scheduled_build: master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Rolling Check Docs | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- '**.rst' | ||
- '**.md' | ||
- '**.yaml' | ||
- '.github/workflows/rolling-check-docs.yml' | ||
|
||
jobs: | ||
check-docs: | ||
name: Check Docs | ||
uses: ros-controls/control.ros.org/.github/workflows/reusable-sphinx-check-single-version.yml@rolling | ||
with: | ||
ROS2_CONTROL_PR: ${{ github.ref }} |
Oops, something went wrong.