Skip to content

Commit 03f7515

Browse files
authored
Updates to CI (#30)
1 parent d39d2d6 commit 03f7515

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)