Skip to content

Commit c499541

Browse files
committed
Merge branch 'main' into tool_contact
2 parents 4a4baa9 + 614b4bd commit c499541

File tree

78 files changed

+4780
-176
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+4780
-176
lines changed

.github/workflows/coverage-build.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,32 +19,36 @@ jobs:
1919
- uses: ros-tooling/[email protected]
2020
with:
2121
required-ros-distributions: ${{ env.ROS_DISTRO }}
22+
use-ros2-testing: true
2223
- uses: actions/checkout@v4
2324
- uses: ros-tooling/[email protected]
2425
with:
2526
target-ros2-distro: ${{ env.ROS_DISTRO }}
2627
# build all packages listed in the meta package
2728
package-name:
28-
ur
29+
ur_calibration
2930
ur_controllers
30-
ur_dashboard_msgs
31-
ur_moveit_config
3231
ur_robot_driver
3332
vcs-repo-file-url: |
3433
https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/Universal_Robots_ROS2_Driver-not-released.${{ env.ROS_DISTRO }}.repos
3534
colcon-defaults: |
3635
{
3736
"build": {
38-
"mixin": ["coverage-gcc"]
37+
"mixin": ["coverage-gcc", "coverage-pytest"]
38+
},
39+
"test": {
40+
"mixin": ["coverage-pytest"]
3941
}
4042
}
4143
colcon-mixin-repository: https://raw.githubusercontent.com/colcon/colcon-mixin-repository/master/index.yaml
42-
skip-tests: true
43-
- uses: codecov/codecov-action@v3
44+
skip-tests: false
45+
- uses: codecov/codecov-action@v5
4446
with:
47+
fail_ci_if_error: true
4548
file: ros_ws/lcov/total_coverage.info
4649
flags: unittests
4750
name: codecov-umbrella
51+
token: ${{ secrets.CODECOV_TOKEN }}
4852
- uses: actions/upload-artifact@v4
4953
with:
5054
name: colcon-logs-${{ matrix.os }}

.github/workflows/humble-binary-main.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
name: Humble Binary Build Main
22
on:
33
workflow_dispatch:
4-
branches:
5-
- humble
64
schedule:
75
# Run every morning to detect flakiness and broken dependencies
86
- cron: '03 5 * * *'
97

10-
118
jobs:
12-
binary:
9+
humble_binary_main:
1310
uses: ./.github/workflows/reusable_ici.yml
1411
with:
1512
ros_distro: humble

.github/workflows/humble-binary-testing.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
name: Humble Binary Build Testing
22
on:
33
workflow_dispatch:
4-
branches:
5-
- humble
64
schedule:
75
# Run every morning to detect flakiness and broken dependencies
86
- cron: '03 5 * * *'
97

108

119
jobs:
12-
binary:
10+
humble_binary_testing:
1311
uses: ./.github/workflows/reusable_ici.yml
1412
with:
1513
ros_distro: humble

.github/workflows/humble-semi-binary-main.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
name: Humble Semi Binary Build Main
22
on:
33
workflow_dispatch:
4-
branches:
5-
- humble
64
schedule:
75
# Run every morning to detect flakiness and broken dependencies
86
- cron: '03 5 * * *'
97

108

119
jobs:
12-
binary:
10+
humble_semi_main:
1311
uses: ./.github/workflows/reusable_ici.yml
1412
with:
1513
ros_distro: humble

.github/workflows/humble-semi-binary-testing.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
name: Humble Semi Binary Build Testing
22
on:
33
workflow_dispatch:
4-
branches:
5-
- humble
64
schedule:
75
# Run every morning to detect flakiness and broken dependencies
86
- cron: '03 5 * * *'
97

108

119
jobs:
12-
binary:
10+
humble_semi_testing:
1311
uses: ./.github/workflows/reusable_ici.yml
1412
with:
1513
ros_distro: humble

.github/workflows/iron-binary-main.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Iron Binary Build Main
22
on:
33
workflow_dispatch:
4-
branches:
5-
- iron
64
pull_request:
75
branches:
86
- iron
@@ -14,7 +12,7 @@ on:
1412
- cron: '13 5 * * *'
1513

1614
jobs:
17-
binary:
15+
iron_binary_main:
1816
uses: ./.github/workflows/reusable_ici.yml
1917
with:
2018
ros_distro: iron

.github/workflows/iron-binary-testing.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Iron Binary Build Testing
22
on:
33
workflow_dispatch:
4-
branches:
5-
- iron
64
pull_request:
75
branches:
86
- iron
@@ -14,7 +12,7 @@ on:
1412
- cron: '13 5 * * *'
1513

1614
jobs:
17-
binary:
15+
iron_binary_testing:
1816
uses: ./.github/workflows/reusable_ici.yml
1917
with:
2018
ros_distro: iron

.github/workflows/iron-semi-binary-main.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Iron Semi Binary Build Main
22
on:
33
workflow_dispatch:
4-
branches:
5-
- iron
64
pull_request:
75
branches:
86
- iron
@@ -14,7 +12,7 @@ on:
1412
- cron: '13 5 * * *'
1513

1614
jobs:
17-
binary:
15+
iron_semi_main:
1816
uses: ./.github/workflows/reusable_ici.yml
1917
with:
2018
ros_distro: iron

.github/workflows/iron-semi-binary-testing.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Iron Semi Binary Build Testing
22
on:
33
workflow_dispatch:
4-
branches:
5-
- iron
64
pull_request:
75
branches:
86
- iron
@@ -14,7 +12,7 @@ on:
1412
- cron: '13 5 * * *'
1513

1614
jobs:
17-
binary:
15+
iron_semi_testing:
1816
uses: ./.github/workflows/reusable_ici.yml
1917
with:
2018
ros_distro: iron

.github/workflows/jazzy-binary-main.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Jazzy Binary Build Main
22
on:
33
workflow_dispatch:
4-
branches:
5-
- main
64
pull_request:
75
branches:
86
- main
@@ -14,7 +12,7 @@ on:
1412
- cron: '13 4 * * *'
1513

1614
jobs:
17-
binary:
15+
jazzy_binary_main:
1816
uses: ./.github/workflows/reusable_ici.yml
1917
with:
2018
ros_distro: jazzy

0 commit comments

Comments
 (0)