Skip to content

Commit

Permalink
ci: always run parent job for clang-tidy for status report
Browse files Browse the repository at this point in the history
Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp>
  • Loading branch information
mitsudome-r committed Dec 24, 2024
1 parent 6696801 commit 6c827b4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-test-tidy-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
codecov-token: ${{ secrets.CODECOV_TOKEN }}

clang-tidy-differential:
if: ${{ always() }}
needs:
- check-if-cuda-job-is-needed
- build-and-test-differential
Expand All @@ -68,9 +69,11 @@ jobs:
run-condition: ${{ needs.check-if-cuda-job-is-needed.outputs.cuda_job_is_needed == 'false' }}

clang-tidy-differential-cuda:
if: ${{ always() }}
needs:
- build-and-test-differential-cuda
uses: ./.github/workflows/clang-tidy-differential.yaml
with:
container: ghcr.io/autowarefoundation/autoware:universe-devel
container-suffix: -cuda
run-condition: ${{ needs.check-if-cuda-job-is-needed.outputs.cuda_job_is_needed == 'true' }}

0 comments on commit 6c827b4

Please sign in to comment.