ci: disable ccache on Windows

This commit is contained in:
Ayke van Laethem
2022-06-29 23:27:21 +02:00
committed by Ron Evans
parent d984b55311
commit 0abc909739
2 changed files with 11 additions and 5 deletions
+2 -2
View File
@@ -55,7 +55,7 @@ jobs:
uses: actions/cache@v2
id: cache-llvm-build
with:
key: llvm-build-14-windows-v1
key: llvm-build-14-windows-v2
path: llvm-build
- name: Build LLVM
if: steps.cache-llvm-build.outputs.cache-hit != 'true'
@@ -65,7 +65,7 @@ jobs:
rm -rf llvm-project
make llvm-source
# build!
make llvm-build
make llvm-build CCACHE=OFF
# Remove unnecessary object files (to reduce cache size).
find llvm-build -name CMakeFiles -prune -exec rm -r '{}' \;
- name: Cache wasi-libc sysroot