We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0158ba commit 0fa2722Copy full SHA for 0fa2722
.github/workflows/build-test-tidy-pr.yaml
@@ -59,6 +59,7 @@ jobs:
59
codecov-token: ${{ secrets.CODECOV_TOKEN }}
60
61
clang-tidy-differential:
62
+ if: ${{ always() }}
63
needs:
64
- check-if-cuda-job-is-needed
65
- build-and-test-differential
@@ -68,9 +69,11 @@ jobs:
68
69
run-condition: ${{ needs.check-if-cuda-job-is-needed.outputs.cuda_job_is_needed == 'false' }}
70
71
clang-tidy-differential-cuda:
72
73
74
- build-and-test-differential-cuda
75
uses: ./.github/workflows/clang-tidy-differential.yaml
76
with:
77
container: ghcr.io/autowarefoundation/autoware:universe-devel
78
container-suffix: -cuda
79
+ run-condition: ${{ needs.check-if-cuda-job-is-needed.outputs.cuda_job_is_needed == 'true' }}
0 commit comments