[ci] fix windows :/ (again) (#237)
Some checks failed
eden-build / source (push) Successful in 3m27s
eden-build / linux (push) Successful in 20m51s
eden-build / windows (msvc) (push) Failing after 9m43s
eden-build / android (push) Successful in 25m40s

Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/237
Co-authored-by: crueter <swurl@swurl.xyz>
Co-committed-by: crueter <swurl@swurl.xyz>
This commit is contained in:
crueter 2025-06-29 05:07:22 +00:00 committed by crueter
parent e0501bfd74
commit 1bdbe2071f
2 changed files with 9 additions and 3 deletions

View file

@ -17,6 +17,11 @@ else
export EXTRA_CMAKE_FLAGS=("${EXTRA_CMAKE_FLAGS[@]}" -DYUZU_USE_BUNDLED_QT=OFF)
fi
if [ "$WINDEPLOYQT" == "" ]; then
echo "You must supply the WINDEPLOYQT environment variable."
exit 1
fi
export EXTRA_CMAKE_FLAGS=("${EXTRA_CMAKE_FLAGS[@]}" $@)
mkdir -p build && cd build
@ -36,6 +41,7 @@ cmake .. -G Ninja \
ninja
windeployqt --release --no-compiler-runtime --no-opengl-sw --no-system-dxc-compiler --no-system-d3d-compiler --dir pkg bin/eden.exe
$WINDEPLOYQT --release --no-compiler-runtime --no-opengl-sw --no-system-dxc-compiler --no-system-d3d-compiler --dir pkg bin/eden.exe
find pkg -type f -name "*.pdb" -exec rm -fv {} +
set +e
find pkg -type f -name "*.pdb" -exec rm -fv {} + \; || true