mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator
synced 2025-05-23 21:57:40 +08:00
For consistency have the CI use the same build path as the end-user builds. Use where.exe from wine-10.0. CI's version is a stub. Use one that actually works, until the CI gets updated. Also, fix broken RtlGenRandom by importing ADVAPI32's GetUserNameW(), and calling GetModuleHandleW() / GetProcAddress() for SystemFunction032(). Instead of trying to use a fake import lib. Bonus: Can now use the host system's username as the default for the steam user name instead of "Noob". ("Noob" is still used as the fallback if this call fails, or the host system's username is invalid.)
10 lines
191 B
Batchfile
Executable File
10 lines
191 B
Batchfile
Executable File
@echo off
|
|
cd /d "%~dp0"
|
|
|
|
IF NOT "%1" == "" ( SET JOB_COUNT=%~1 )
|
|
|
|
SET SKIP_EXPERIMENTAL_STEAMCLIENT_BUILD=1
|
|
SET SKIP_STEAMCLIENT_LOADER=1
|
|
|
|
call build_win_release_experimental_steamclient.bat
|