From fe969e85dec1b239922bbf0b8c987df87fceb422 Mon Sep 17 00:00:00 2001 From: Bret Curtis Date: Wed, 5 Jan 2022 13:40:34 +0100 Subject: [PATCH] case-sensative --- .gitlab-ci.yml | 2 +- CI/before_script.msvc.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6cb31306cd..57cc7a70ce 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -403,7 +403,7 @@ variables: &tests-targets - deps - MSVC2019_64_Ninja/deps/Qt variables: - SCCACHE_SIZE: 2G + CCACHE_SIZE: 2G artifacts: when: always paths: diff --git a/CI/before_script.msvc.sh b/CI/before_script.msvc.sh index 0ad62e849d..7853147dc4 100644 --- a/CI/before_script.msvc.sh +++ b/CI/before_script.msvc.sh @@ -62,7 +62,7 @@ VERBOSE="" STRIP="" SKIP_DOWNLOAD="" SKIP_EXTRACT="" -USE_SCCACHE="" +USE_CCACHE="" KEEP="" UNITY_BUILD="" VS_VERSION="" @@ -102,7 +102,7 @@ while [ $# -gt 0 ]; do SKIP_EXTRACT=true ;; C ) - USE_SCCACHE=true ;; + USE_CCACHE=true ;; k ) KEEP=true ;; @@ -508,7 +508,7 @@ if ! [ -z $UNITY_BUILD ]; then add_cmake_opts "-DOPENMW_UNITY_BUILD=True" fi -if ! [ -z $USE_SCCACHE ]; then +if ! [ -z $USE_CCACHE ]; then add_cmake_opts "-DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache" fi