File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -150,12 +150,10 @@ jobs:
150
150
- name : Configure
151
151
run : |
152
152
export MPICH_CXX=$(which clang++)
153
- export MPICH_CC=$(which clang)
154
153
cmake \
155
154
-B ${{runner.workspace}}/build-clang-tidy \
156
155
-DCMAKE_BUILD_TYPE:STRING=Release \
157
156
-DCMAKE_CXX_COMPILER:STRING=mpicxx \
158
- -DCMAKE_C_COMPILER:STRING=mpicc \
159
157
-DTIOGA_ENABLE_CLANG_TIDY:BOOL=ON \
160
158
-DCMAKE_CXX_COMPILER_LAUNCHER:STRING=ccache \
161
159
-DCLANG_TIDY_EXEC_NAME:STRING=clang-tidy-${CLANG_TIDY_VERSION} \
@@ -168,12 +166,12 @@ jobs:
168
166
awk 'BEGIN{i=0}{print $0}{i++}END{print "Warnings: "i}' > clang-tidy-ci-report.txt
169
167
- name : Ccache Report
170
168
run : |
171
- ls ~/.cache
172
- ls ~/.cache/ccache
173
- du -hs ~/.cache/ccache
174
- ls ~/.cache/ctcache
175
- du -hs ~/.cache/ctcache
176
- ccache -s
169
+ ls ~/.cache || true
170
+ ls ~/.cache/ccache || true
171
+ du -hs ~/.cache/ccache || true
172
+ ls ~/.cache/ctcache || true
173
+ du -hs ~/.cache/ctcache || true
174
+ ccache -s || true
177
175
- name : Full report
178
176
working-directory : ${{runner.workspace}}/build-clang-tidy
179
177
run : cat clang-tidy-full-report.txt
You can’t perform that action at this time.
0 commit comments