mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Configure CCACHE launcher for Debian amd64 CI
Let's not rely on the CMakeLists.txt to automatically detect and use ccache. It's better to just explicitly specify it.
This commit is contained in:
parent
bab86f0842
commit
939b42c8e3
1 changed files with 7 additions and 1 deletions
|
|
@ -39,7 +39,13 @@ Debian stable:amd64:
|
|||
- - |
|
||||
# cmake
|
||||
echo -e "\e[0Ksection_start:`date +%s`:cmake[collapsed=false]\r\e[0KBuilding Makefiles"
|
||||
- cmake -B build.cmake -DSRB2_CONFIG_ENABLE_WEBM_MOVIES=OFF -G "Unix Makefiles"
|
||||
- |
|
||||
CCACHE=$(which ccache)
|
||||
cmake -B build.cmake \
|
||||
-G "Unix Makefiles" \
|
||||
-DCMAKE_C_COMPILER_LAUNCHER=$CCACHE \
|
||||
-DCMAKE_CXX_COMPILER_LAUNCHER=$CCACHE \
|
||||
-DSRB2_CONFIG_ENABLE_WEBM_MOVIES=OFF
|
||||
- |
|
||||
# cmake
|
||||
echo -e "\e[0Ksection_end:`date +%s`:cmake\r\e[0K"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue