-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI] Add clang job, setup concurrency, use rt_tools humble branch (#1910
- Loading branch information
1 parent
0ef99fe
commit 6e896bf
Showing
34 changed files
with
183 additions
and
25 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: Humble Semi-Binary Build | ||
# author: Denis Štogl <[email protected]> | ||
# description: 'Build & test all dependencies from released (binary) packages.' | ||
# description: 'Build & test all ros2_control dependencies from source.' | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -32,8 +32,13 @@ on: | |
# Run every morning to detect flakiness and broken dependencies | ||
- cron: '03 1 * * *' | ||
|
||
concurrency: | ||
# cancel previous runs of the same workflow, except for pushes on humble branch | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} | ||
|
||
jobs: | ||
binary: | ||
semi-binary: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master | ||
strategy: | ||
fail-fast: false | ||
|
@@ -45,3 +50,14 @@ jobs: | |
ros_repo: ${{ matrix.ROS_REPO }} | ||
upstream_workspace: ros2_control.${{ matrix.ROS_DISTRO }}.repos | ||
ref_for_scheduled_build: humble | ||
semi-binary-clang: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master | ||
with: | ||
ros_distro: humble | ||
ros_repo: testing | ||
upstream_workspace: ros2_control.humble.repos | ||
ref_for_scheduled_build: humble | ||
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: Jazzy Semi-Binary Build | ||
# author: Denis Štogl <[email protected]> | ||
# description: 'Build & test all dependencies from released (binary) packages.' | ||
# description: 'Build & test all ros2_control dependencies from source.' | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -32,8 +32,13 @@ on: | |
# Run every morning to detect flakiness and broken dependencies | ||
- cron: '03 1 * * *' | ||
|
||
concurrency: | ||
# cancel previous runs of the same workflow, except for pushes on master branch | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} | ||
|
||
jobs: | ||
binary: | ||
semi-binary: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master | ||
strategy: | ||
fail-fast: false | ||
|
@@ -45,3 +50,14 @@ jobs: | |
ros_repo: ${{ matrix.ROS_REPO }} | ||
upstream_workspace: ros2_control.${{ matrix.ROS_DISTRO }}.repos | ||
ref_for_scheduled_build: master | ||
semi-binary-clang: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master | ||
with: | ||
ros_distro: jazzy | ||
ros_repo: testing | ||
upstream_workspace: ros2_control.jazzy.repos | ||
ref_for_scheduled_build: master | ||
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: Rolling Semi-Binary Build | ||
# author: Denis Štogl <[email protected]> | ||
# description: 'Build & test all dependencies from released (binary) packages.' | ||
# description: 'Build & test all ros2_control dependencies from source.' | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -32,8 +32,13 @@ on: | |
# Run every morning to detect flakiness and broken dependencies | ||
- cron: '03 1 * * *' | ||
|
||
concurrency: | ||
# cancel previous runs of the same workflow, except for pushes on master branch | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ !startsWith(github.ref, '/refs/heads') }} | ||
|
||
jobs: | ||
binary: | ||
semi-binary: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master | ||
strategy: | ||
fail-fast: false | ||
|
@@ -45,3 +50,15 @@ jobs: | |
ros_repo: ${{ matrix.ROS_REPO }} | ||
upstream_workspace: ros2_control.${{ matrix.ROS_DISTRO }}.repos | ||
ref_for_scheduled_build: master | ||
semi-binary-clang: | ||
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-industrial-ci-with-cache.yml@master | ||
with: | ||
# job for building only, no tests -> one distro is enough | ||
ros_distro: rolling | ||
ros_repo: testing | ||
upstream_workspace: ros2_control.rolling.repos | ||
ref_for_scheduled_build: master | ||
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
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.