mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-07 09:56:15 +01:00
c4799982d6
This way, we can continue to test whether 32-bit builds continue to work with Visual Studio builds. Note that this uses the x64-to-x86 cross compiler.
32 lines
1014 B
Batchfile
32 lines
1014 B
Batchfile
@echo on
|
|
|
|
:: Remove quotes from script args
|
|
setlocal enabledelayedexpansion
|
|
set args=
|
|
set stash_plat=0
|
|
|
|
for %%x in (%*) do (
|
|
if "%%x" == "--plat" set stash_plat=1
|
|
if "!stash_plat!" == "0" set args=!args! %%~x
|
|
if "!stash_plat!" == "1" if /i not "%%x" == "--plat" (set plat=%%x) & (set stash_plat=0)
|
|
)
|
|
set args=%args:~1%
|
|
if "!plat!" == "" set plat=x64
|
|
|
|
:: vcvarsall.bat sets various env vars like PATH, INCLUDE, LIB, LIBPATH for the
|
|
:: specified build architecture
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" !plat!
|
|
|
|
pip3 install --upgrade --user meson==1.4.2 || goto :error
|
|
meson setup %args% _build || goto :error
|
|
meson compile -C _build || goto :error
|
|
|
|
meson test -v -C _build --timeout-multiplier %MESON_TEST_TIMEOUT_MULTIPLIER% || goto :error
|
|
meson test -v -C _build --timeout-multiplier %MESON_TEST_TIMEOUT_MULTIPLIER% --setup=unstable_tests --suite=failing --suite=flaky
|
|
|
|
:: FIXME: can we get code coverage support?
|
|
|
|
goto :EOF
|
|
:error
|
|
exit /b 1
|