Update .gitlab-ci.yml file to skip building the PDBs.

(CI throws errors and skips building the PE files.)
This commit is contained in:
redpolline 2025-01-31 02:06:41 +00:00
parent b75f324100
commit ed4e4f2fcc

View File

@ -72,12 +72,15 @@ build_windows:
- DLL_FILES="$(ls dll/*.cpp | tr "\n" " ")"; sed "s|dll/\*.cpp|$DLL_FILES|g" -i *.bat
- DLL_FILES="$(ls dll/*.proto | tr "\n" " " | sed "s/.proto/.pb.cc/g")"; sed "s|dll/\*.cc|$DLL_FILES|g" -i *.bat
- sed "s| /MP12 | /MP4 |g" -i *.bat
# CI can't produce PDBs. Throws a bunch of errors, and skips building the PEs.
- sed "s| /DDEBUG\:FULL | |g" -i *.bat
- python generate_build_win_bat.py
- export WINEDEBUG=-all
- wine cmd /c build_win_release_test.bat
artifacts:
paths:
- release/
- debug/
expire_in: 1 day
build_cmake_linux: