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:
150150 - name : Configure
151151 run : |
152152 export MPICH_CXX=$(which clang++)
153- export MPICH_CC=$(which clang)
154153 cmake \
155154 -B ${{runner.workspace}}/build-clang-tidy \
156155 -DCMAKE_BUILD_TYPE:STRING=Release \
157156 -DCMAKE_CXX_COMPILER:STRING=mpicxx \
158- -DCMAKE_C_COMPILER:STRING=mpicc \
159157 -DTIOGA_ENABLE_CLANG_TIDY:BOOL=ON \
160158 -DCMAKE_CXX_COMPILER_LAUNCHER:STRING=ccache \
161159 -DCLANG_TIDY_EXEC_NAME:STRING=clang-tidy-${CLANG_TIDY_VERSION} \
@@ -168,12 +166,12 @@ jobs:
168166 awk 'BEGIN{i=0}{print $0}{i++}END{print "Warnings: "i}' > clang-tidy-ci-report.txt
169167 - name : Ccache Report
170168 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
177175 - name : Full report
178176 working-directory : ${{runner.workspace}}/build-clang-tidy
179177 run : cat clang-tidy-full-report.txt
You can’t perform that action at this time.
0 commit comments