Merge branch 'g-clear-pointer-no-side-effects' into 'master'
[glib.git] / .gitlab-ci / test-msvc.bat
blob9b674f76eb1fd2b3b23f86d77646e66e49f3654b
1 @echo on
2 :: vcvarsall.bat sets various env vars like PATH, INCLUDE, LIB, LIBPATH for the
3 :: specified build architecture
4 call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64
5 @echo on
7 :: FIXME: make warnings fatal
8 pip3 install --upgrade --user meson==0.47.0  || goto :error
9 meson _build || goto :error
10 ninja -C _build || goto :error
12 :: FIXME: dont ignore test errors
13 meson test -C _build --timeout-multiplier %MESON_TEST_TIMEOUT_MULTIPLIER%
15 :: FIXME: can we get code coverage support?
17 goto :EOF
18 :error
19 exit /b 1