-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
db891ef
commit a4b8511
Showing
21 changed files
with
274 additions
and
46 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
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
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
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,17 @@ | ||
name: Jazzy ABI Compatibility Check | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- jazzy | ||
|
||
concurrency: | ||
# 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') }} | ||
|
||
jobs: | ||
abi_check: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-abi-check.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,34 @@ | ||
name: Jazzy Windows Binary Build | ||
# author: Christoph Fröhlich <[email protected]> | ||
# description: 'Build & test all dependencies from released (binary) windows packages.' | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- jazzy | ||
# types: | ||
# - labeled | ||
push: | ||
branches: | ||
- jazzy | ||
# issue_comment: | ||
# types: | ||
# - created | ||
|
||
concurrency: | ||
# 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') }} | ||
|
||
jobs: | ||
binary-windows: | ||
# if: | | ||
# (github.event_name == 'issue_comment' && contains(github.event.comment.body, '/check-windows')) || | ||
# (github.event_name == 'pull_request' && contains(github.event.label.name, 'check-windows')) || | ||
# (github.event_name == 'workflow_dispatch') | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-ros-tooling-win-build.yml@master | ||
with: | ||
ros_distro: jazzy | ||
ref_for_scheduled_build: jazzy | ||
os_name: windows-2019 |
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,43 @@ | ||
name: Jazzy Binary Build | ||
# author: Denis Štogl <[email protected]> | ||
# description: 'Build & test all dependencies from released (binary) packages.' | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- jazzy | ||
push: | ||
branches: | ||
- jazzy | ||
schedule: | ||
# Run every morning to detect flakiness and broken dependencies | ||
- cron: '03 1 * * *' | ||
|
||
concurrency: | ||
# 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') }} | ||
|
||
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 }} | ||
ref_for_scheduled_build: jazzy | ||
binary_clang: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master | ||
with: | ||
ros_distro: jazzy | ||
ros_repo: testing | ||
ref_for_scheduled_build: jazzy | ||
additional_debs: clang | ||
c_compiler: clang | ||
cxx_compiler: clang++ | ||
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,28 @@ | ||
name: Jazzy Downstream Build | ||
# description: 'Build & test downstream packages from source.' | ||
# author: Christoph Froehlich <[email protected]> | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- jazzy | ||
push: | ||
branches: | ||
- jazzy | ||
|
||
concurrency: | ||
# 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') }} | ||
|
||
jobs: | ||
build-downstream: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master | ||
with: | ||
ros_distro: jazzy | ||
ros_repo: testing | ||
ref_for_scheduled_build: jazzy | ||
not_test_build: true | ||
downstream_workspace: ros_controls.jazzy.repos | ||
not_test_downstream: 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,22 @@ | ||
name: Jazzy Coverage Build | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- jazzy | ||
pull_request: | ||
branches: | ||
- jazzy | ||
|
||
concurrency: | ||
# 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') }} | ||
|
||
jobs: | ||
coverage: | ||
name: coverage build | ||
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,21 @@ | ||
name: Jazzy Debian Build | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- jazzy | ||
schedule: | ||
# Run every day to detect flakiness and broken dependencies | ||
- cron: '33 2 * * *' | ||
|
||
concurrency: | ||
# 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') }} | ||
|
||
jobs: | ||
debian_source_build: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-debian-build.yml@master | ||
with: | ||
ros_distro: jazzy | ||
ref_for_scheduled_build: 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,17 @@ | ||
name: Jazzy Pre-Commit | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- jazzy | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
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,21 @@ | ||
name: Jazzy RHEL Binary Build | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- jazzy | ||
schedule: | ||
# Run every day to detect flakiness and broken dependencies | ||
- cron: '03 3 * * *' | ||
|
||
concurrency: | ||
# 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') }} | ||
|
||
jobs: | ||
rhel_semi_binary_build: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-rhel-binary-build.yml@master | ||
with: | ||
ros_distro: jazzy | ||
ref_for_scheduled_build: 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,20 @@ | ||
name: Jazzy rosdoc2 | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- jazzy | ||
paths: | ||
- doc/** | ||
- rosdoc2.yaml | ||
- package.xml | ||
|
||
concurrency: | ||
# 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') }} | ||
|
||
jobs: | ||
check: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-rosdoc2.yml@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: Jazzy Source Build | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- jazzy | ||
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: jazzy | ||
ros2_repo_branch: jazzy | ||
os_name: ubuntu-latest | ||
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
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
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
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
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
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
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
Oops, something went wrong.