We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e98dc71 commit c9458c5Copy full SHA for c9458c5
.github/workflows/coverity.yml
@@ -34,7 +34,7 @@ jobs:
34
run: |
35
set(ENV{CC} gcc-11)
36
set(ENV{CXX} g++-11)
37
-
+
38
execute_process(
39
COMMAND ${CMAKE_COMMAND}
40
-S .
@@ -50,10 +50,12 @@ jobs:
50
message(FATAL_ERROR "Could not run with ${CMAKE_COMMAND}: Got ${error_message} - ${result}")
51
endif()
52
- name: Build
53
- shell: cmake -P {0}
+ shell: |
54
+ export PATH=`pwd`/cov-analysis-linux64/bin:$PATH
55
+ cmake -P {0}
56
57
- COMMAND cov-analysis-linux64/bin/cov-build --dir cov-int ${CMAKE_COMMAND} --build build
58
+ COMMAND cov-build --dir cov-int ${CMAKE_COMMAND} --build build
59
RESULT_VARIABLE result
60
ERROR_VARIABLE error_message
61
)
0 commit comments