diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f779c52e44..6960a1d01f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -558,7 +558,7 @@ Ubuntu_GCC_integration_tests_asan: - export CCACHE_BASEDIR="$(pwd)" - export CCACHE_DIR="$(pwd)/ccache" - mkdir -pv "${CCACHE_DIR}" - - CI/macos/ccache_prep.sh + - ccache -z -M "${CCACHE_SIZE}" - CI/before_script.macos.sh - CI/macos/build.sh - cd build @@ -578,7 +578,7 @@ Ubuntu_GCC_integration_tests_asan: s3cmd put "${dmg}" s3://openmw-artifacts/${artifactDirectory} done fi - - ../CI/macos/ccache_show_stats.sh + - ccache -svv artifacts: paths: - build/OpenMW-*.dmg diff --git a/CI/macos/ccache_prep.sh b/CI/macos/ccache_prep.sh deleted file mode 100755 index 314da2c88f..0000000000 --- a/CI/macos/ccache_prep.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -ex - -ccache -z -M "${CCACHE_SIZE}" diff --git a/CI/macos/ccache_show_stats.sh b/CI/macos/ccache_show_stats.sh deleted file mode 100755 index 75a788217f..0000000000 --- a/CI/macos/ccache_show_stats.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -ex - -ccache -svv