Revert a9312c837e . Use proper GCC binary location and CCACHE changes in

the CI
This commit is contained in:
Fijxu 2024-03-25 00:11:11 -03:00
parent 0c2bdc6f61
commit d4375a21ef
No known key found for this signature in database
GPG key ID: 32C1DDF333EDA6A4
3 changed files with 7 additions and 9 deletions

View file

@ -6,7 +6,7 @@
# Exit on error, rather than continuing with the rest of the script.
set -e
ccache -s
ccache -sv
mkdir build || true && cd build
cmake .. \
@ -15,8 +15,8 @@ cmake .. \
-DSUYU_USE_PRECOMPILED_HEADERS=OFF \
-DDYNARMIC_USE_PRECOMPILED_HEADERS=OFF \
-DCMAKE_CXX_FLAGS="-march=x86-64-v2" \
-DCMAKE_CXX_COMPILER=/usr/bin/g++ \
-DCMAKE_C_COMPILER=/usr/bin/gcc \
-DCMAKE_CXX_COMPILER=/usr/local/bin/g++ \
-DCMAKE_C_COMPILER=/usr/local/bin/gcc \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DDISPLAY_VERSION=$1 \
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD=OFF \
@ -31,7 +31,7 @@ cmake .. \
ninja
ccache -s
ccache -sv
ctest -VV -C Release