Skip to content

Commit c47b653

Browse files
authored
chore: sync files
Signed-off-by: GitHub <noreply@github.com>
1 parent 3660b59 commit c47b653

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

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

+12-6
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ jobs:
2121
container: ros:humble
2222
build-depends-repos: build_depends.repos
2323
steps:
24-
- name: Cancel previous runs
25-
uses: styfle/cancel-workflow-action@0.10.0
26-
2724
- name: Check out repository
2825
uses: actions/checkout@v3
2926
with:
@@ -64,7 +61,7 @@ jobs:
6461

6562
clang-tidy-differential:
6663
runs-on: ubuntu-latest
67-
container: ros:galactic
64+
container: ros:humble
6865
needs: build-and-test-differential
6966
steps:
7067
- name: Check out repository
@@ -79,11 +76,20 @@ jobs:
7976
id: get-modified-packages
8077
uses: autowarefoundation/autoware-github-actions/get-modified-packages@v1
8178

79+
- name: Get modified files
80+
id: get-modified-files
81+
uses: tj-actions/changed-files@v32
82+
with:
83+
files: |
84+
**/*.cpp
85+
**/*.hpp
86+
8287
- name: Run clang-tidy
83-
if: ${{ steps.get-modified-packages.outputs.modified-packages != '' }}
88+
if: ${{ steps.get-modified-files.outputs.all_changed_files != '' }}
8489
uses: autowarefoundation/autoware-github-actions/clang-tidy@v1
8590
with:
86-
rosdistro: galactic
91+
rosdistro: humble
8792
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
93+
target-files: ${{ steps.get-modified-files.outputs.all_changed_files }}
8894
clang-tidy-config-url: https://raw.githubusercontent.com/autowarefoundation/autoware/main/.clang-tidy
8995
build-depends-repos: build_depends.repos

.yamllint.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
extends: default
22

33
ignore: |
4-
.clang-tidy
54
*.param.yaml
65
76
rules:

0 commit comments

Comments
 (0)