diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 3ca376d0a..ed7b1d8b3 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -57,6 +57,12 @@ jobs: ccache-macos-appleclang- - name: build ImpactX run: | + export CCACHE_COMPRESS=1 + export CCACHE_COMPRESSLEVEL=10 + export CCACHE_MAXSIZE=100M + export CCACHE_SLOPPINESS=time_macros + ccache -z + source py-venv/bin/activate cmake -S . -B build \ @@ -65,6 +71,9 @@ jobs: -DPython_EXECUTABLE=$(which python3) cmake --build build -j 3 + du -hs ~/Library/Caches/ccache + ccache -s + - name: run tests run: | source py-venv/bin/activate