fix: rm -rf build dir before cmake configure — stale cache ignoring WITH_UNWIND=OFF
Some checks failed
Build & Sign Wraith / Build Windows + Sign (push) Failing after 20s

This commit is contained in:
Vantz Stockwell 2026-03-17 09:35:19 -04:00
parent c2e7f8336b
commit 695fabfeaf

View File

@ -137,7 +137,8 @@ jobs:
export CFLAGS="-w" export CFLAGS="-w"
export CXXFLAGS="-w" export CXXFLAGS="-w"
# Configure — minimal client-only build # Clean any stale cmake cache and configure fresh
rm -rf build
cmake -B build -G Ninja \ cmake -B build -G Ninja \
-DCMAKE_TOOLCHAIN_FILE=/tmp/mingw-toolchain.cmake \ -DCMAKE_TOOLCHAIN_FILE=/tmp/mingw-toolchain.cmake \
-DCMAKE_BUILD_TYPE=Release \ -DCMAKE_BUILD_TYPE=Release \