Skip to content

Commit

Permalink
remove sccache from CMake to test OpenMP
Browse files Browse the repository at this point in the history
[actions skip]
  • Loading branch information
KrisThielemans committed Jan 8, 2023
1 parent c6e0146 commit 8eaa7dc
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,20 @@ install:

build_script:
- cd C:\projects\STIR
- path=%path%;%DEPS%
- sccache --show-stats
- REM path=%path%;%DEPS%
- REM sccache --show-stats
- mkdir build
- mkdir install
- cd build
- cmake.exe .. -G Ninja -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DCMAKE_CONFIGURATION_TYPES=%CONFIGURATION% -DSTIR_OPENMP=ON -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache
- cmake.exe .. -G Ninja -DCMAKE_INSTALL_PREFIX=%CMAKE_INSTALL_PREFIX% -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DCMAKE_CONFIGURATION_TYPES=%CONFIGURATION% -DSTIR_OPENMP=ON
- REM DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache
- cmake.exe --build . --config %CONFIGURATION%
- cmake.exe --build . --target install --config %CONFIGURATION%
- sccache --show-stats
- REM sccache --show-stats

cache:
- c:\projects\deps\sccache-%sccache_VER%.zip
- C:\Users\appveyor\AppData\Local\Mozilla\sccache\cache
# - C:\Users\appveyor\AppData\Local\Mozilla\sccache\cache

test_script:
- cd C:\projects\stir\build
Expand Down

0 comments on commit 8eaa7dc

Please sign in to comment.