1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-10-14 15:56:34 +00:00

Eliminate single-line ccache scripts

They used to be necessary because they selected CMake of the same architecture as the build target, but now we use native ccache, they don't do anything meaningful.

Make things consistent with other platforms and just call ccache directly in the CI script.
This commit is contained in:
AnyOldName3 2025-09-05 01:01:41 +01:00
parent 6cdcbd957a
commit c70a7cd15b
3 changed files with 2 additions and 8 deletions

View file

@ -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

View file

@ -1,3 +0,0 @@
#!/bin/sh -ex
ccache -z -M "${CCACHE_SIZE}"

View file

@ -1,3 +0,0 @@
#!/bin/sh -ex
ccache -svv