Skip to content

Commit ef64b0b

Browse files
authored
[GHA][CLANG-TIDY] Add -k 0 flag for build commands (#31260)
### Details: Include the `-k 0` option in every clang-tidy invocation in `.github/workflows/clang_tidy.yml` so that checks continue through all clang-tidy remarks and emit a complete set of diagnostics in CI. ### Tickets: - N/A
1 parent a7e8fe4 commit ef64b0b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/clang_tidy.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
--parallel $(($(nproc) - 1)) \
145145
--config ${{ env.CMAKE_BUILD_TYPE }} \
146146
--target openvino_intel_cpu_plugin \
147-
-- --quiet
147+
-- --quiet -k 0
148148
149149
- name: Show sccache stats
150150
run: ${SCCACHE_PATH} --show-stats
@@ -210,7 +210,8 @@ jobs:
210210
--build ${BUILD_DIR} \
211211
--parallel $(($(nproc) - 1)) \
212212
--config ${{ env.CMAKE_BUILD_TYPE }} \
213-
--target openvino_intel_cpu_plugin
213+
--target openvino_intel_cpu_plugin \
214+
-- -k 0
214215
# TODO: add --quiet after switch to Ubuntu 24.04+
215216

216217
- name: Show sccache stats
@@ -278,7 +279,8 @@ jobs:
278279
--build ${BUILD_DIR} \
279280
--parallel $(($(nproc) - 1)) \
280281
--config ${{ env.CMAKE_BUILD_TYPE }} \
281-
--target openvino_intel_cpu_plugin
282+
--target openvino_intel_cpu_plugin \
283+
-- -k 0
282284
# TODO: add --quiet after switch to Ubuntu 24.04+
283285

284286
Overall_Status:

0 commit comments

Comments
 (0)