Skip to content

Commit

Permalink
Rename: ccache.exe
Browse files Browse the repository at this point in the history
  • Loading branch information
ax3l committed Oct 6, 2023
1 parent bccbe88 commit ab5884c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
$Env:CCACHE_COMPRESS='1'
$Env:CCACHE_COMPRESSLEVEL='10'
$Env:CCACHE_MAXSIZE='105M'
ccache -z
ccache.exe -z
cmake -S . -B build `
-G "Ninja" `
Expand All @@ -46,10 +46,10 @@ jobs:
-DAMReX_ENABLE_TESTS=ON `
-DAMReX_FORTRAN=OFF `
-DAMReX_MPI=OFF `
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache.exe
cmake --build build --config Debug -j 2
ccache -s
ccache.exe -s
# Build libamrex and all test (static)
test_msvc_static:
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
$Env:CCACHE_COMPRESS='1'
$Env:CCACHE_COMPRESSLEVEL='10'
$Env:CCACHE_MAXSIZE='135M'
ccache -z
ccache.exe -z
cmake -S . -B build `
-G "Ninja" `
Expand All @@ -88,10 +88,10 @@ jobs:
-DAMReX_ENABLE_TESTS=ON `
-DAMReX_FORTRAN=OFF `
-DAMReX_MPI=OFF `
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache.exe
cmake --build build --config RelWithDebInfo -j 2
ccache -s
ccache.exe -s
# Build libamrex and all tests
tests_clang:
Expand Down

0 comments on commit ab5884c

Please sign in to comment.