mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-30 22:45:34 +00:00
Increase CCache size for Debian where needed
This commit is contained in:
parent
f04be08327
commit
1aa5e5cc52
1 changed files with 5 additions and 1 deletions
|
@ -18,7 +18,7 @@ stages:
|
||||||
script:
|
script:
|
||||||
- export CCACHE_BASEDIR="`pwd`"
|
- export CCACHE_BASEDIR="`pwd`"
|
||||||
- export CCACHE_DIR="`pwd`/ccache" && mkdir -pv "$CCACHE_DIR"
|
- export CCACHE_DIR="`pwd`/ccache" && mkdir -pv "$CCACHE_DIR"
|
||||||
- ccache -z -M 1G
|
- ccache -z -M "${CCACHE_SIZE}"
|
||||||
- CI/before_script.linux.sh
|
- CI/before_script.linux.sh
|
||||||
- cd build
|
- cd build
|
||||||
- cmake --build . -- -j $(nproc)
|
- cmake --build . -- -j $(nproc)
|
||||||
|
@ -36,6 +36,7 @@ Debian_GCC:
|
||||||
variables:
|
variables:
|
||||||
CC: gcc
|
CC: gcc
|
||||||
CXX: g++
|
CXX: g++
|
||||||
|
CCACHE_SIZE: 3G
|
||||||
|
|
||||||
Debian_GCC_tests:
|
Debian_GCC_tests:
|
||||||
extends: .Debian
|
extends: .Debian
|
||||||
|
@ -44,6 +45,7 @@ Debian_GCC_tests:
|
||||||
variables:
|
variables:
|
||||||
CC: gcc
|
CC: gcc
|
||||||
CXX: g++
|
CXX: g++
|
||||||
|
CCACHE_SIZE: 1G
|
||||||
BUILD_TESTS_ONLY: 1
|
BUILD_TESTS_ONLY: 1
|
||||||
|
|
||||||
Debian_Clang:
|
Debian_Clang:
|
||||||
|
@ -53,6 +55,7 @@ Debian_Clang:
|
||||||
variables:
|
variables:
|
||||||
CC: clang
|
CC: clang
|
||||||
CXX: clang++
|
CXX: clang++
|
||||||
|
CCACHE_SIZE: 2G
|
||||||
|
|
||||||
Debian_Clang_tests:
|
Debian_Clang_tests:
|
||||||
extends: .Debian
|
extends: .Debian
|
||||||
|
@ -61,6 +64,7 @@ Debian_Clang_tests:
|
||||||
variables:
|
variables:
|
||||||
CC: clang
|
CC: clang
|
||||||
CXX: clang++
|
CXX: clang++
|
||||||
|
CCACHE_SIZE: 1G
|
||||||
BUILD_TESTS_ONLY: 1
|
BUILD_TESTS_ONLY: 1
|
||||||
|
|
||||||
MacOS:
|
MacOS:
|
||||||
|
|
Loading…
Reference in a new issue