Merge branch 'wip/Jehan/fopen-modes' into 'master'
[glib.git] / .gitlab-ci / test-msvc.bat
bloba62882de0be075896ab7a280dd88f637a8e0d6c4
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 meson _build || goto :error
9 ninja -C _build || goto :error
11 :: FIXME: dont ignore test errors
12 meson test -C _build --timeout-multiplier %MESON_TEST_TIMEOUT_MULTIPLIER%
14 :: FIXME: can we get code coverage support?
16 goto :EOF
17 :error
18 exit /b 1