2018-05-24 19:18:25 +02:00
|
|
|
@echo on
|
|
|
|
:: vcvarsall.bat sets various env vars like PATH, INCLUDE, LIB, LIBPATH for the
|
|
|
|
:: specified build architecture
|
2020-04-29 08:44:43 +02:00
|
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64
|
2022-01-14 17:01:16 +01:00
|
|
|
|
|
|
|
:: Remove quotes from script args
|
|
|
|
setlocal enabledelayedexpansion
|
|
|
|
set args=
|
|
|
|
for %%x in (%*) do (
|
|
|
|
set args=!args! %%~x
|
|
|
|
)
|
|
|
|
set args=%args:~1%
|
2018-05-24 19:18:25 +02:00
|
|
|
|
|
|
|
:: FIXME: make warnings fatal
|
2024-07-04 13:04:38 +02:00
|
|
|
pip3 install --upgrade --user meson==1.2.3 || goto :error
|
2023-08-14 13:24:28 +02:00
|
|
|
meson setup %args% _build || goto :error
|
2023-08-16 13:57:47 +02:00
|
|
|
meson compile -C _build || goto :error
|
2018-05-24 19:18:25 +02:00
|
|
|
|
2023-01-20 15:41:17 +01:00
|
|
|
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
|
2018-05-24 19:18:25 +02:00
|
|
|
|
|
|
|
:: FIXME: can we get code coverage support?
|
|
|
|
|
|
|
|
goto :EOF
|
|
|
|
:error
|
|
|
|
exit /b 1
|