Skip to content

Commit 0d69013

Browse files
github-actionsgithub-actions[bot]
github-actions
authored andcommitted
chore: sync files
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent a4e240b commit 0d69013

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/build-and-test-differential.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,12 @@ jobs:
2828
matrix:
2929
rosdistro:
3030
- humble
31+
- jazzy
3132
include:
3233
- rosdistro: humble
3334
container: ros:humble
35+
- rosdistro: jazzy
36+
container: ros:jazzy
3437
steps:
3538
- name: Set PR fetch depth
3639
run: echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> "${GITHUB_ENV}"
@@ -57,7 +60,6 @@ jobs:
5760
with:
5861
rosdistro: ${{ matrix.rosdistro }}
5962
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
60-
build-depends-repos: build_depends.repos
6163

6264
- name: Test
6365
id: test
@@ -66,7 +68,6 @@ jobs:
6668
with:
6769
rosdistro: ${{ matrix.rosdistro }}
6870
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
69-
build-depends-repos: build_depends.repos
7071

7172
- name: Upload coverage to CodeCov
7273
if: ${{ steps.test.outputs.coverage-report-files != '' }}

.github/workflows/build-and-test.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,12 @@ jobs:
2020
matrix:
2121
rosdistro:
2222
- humble
23+
- jazzy
2324
include:
2425
- rosdistro: humble
2526
container: ros:humble
27+
- rosdistro: jazzy
28+
container: ros:jazzy
2629
steps:
2730
- name: Check out repository
2831
uses: actions/checkout@v4
@@ -45,7 +48,6 @@ jobs:
4548
with:
4649
rosdistro: ${{ matrix.rosdistro }}
4750
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}
48-
build-depends-repos: build_depends.repos
4951

5052
- name: Test
5153
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
@@ -54,7 +56,6 @@ jobs:
5456
with:
5557
rosdistro: ${{ matrix.rosdistro }}
5658
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}
57-
build-depends-repos: build_depends.repos
5859

5960
- name: Upload coverage to CodeCov
6061
if: ${{ steps.test.outputs.coverage-report-files != '' }}

0 commit comments

Comments
 (0)