mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
c3bd0b0301
PKG_CONFIG does not really work on Windows, Strawberry perl's uses mingw libraries, which VS compiler cannot use, BOOST not used. Tests main.query_cache_debug and main.mdev-504 timed out on debug build at 2 minutes so increase the timeout to 4 minutes. Overall build time was 30 min 44 seconds so plenty of time currently. Signed-off-by: Daniel Black <daniel@linux.vnet.ibm.com>
17 lines
552 B
YAML
17 lines
552 B
YAML
version: 10.2-{build}
|
|
before_build:
|
|
- md %APPVEYOR_BUILD_FOLDER%\win_build
|
|
- cd %APPVEYOR_BUILD_FOLDER%\win_build
|
|
- cmake .. -G "Visual Studio 15 2017" -DBISON_EXECUTABLE=C:\cygwin\bin\bison
|
|
- dir
|
|
build:
|
|
project: win_build\MySQL.sln
|
|
parallel: true
|
|
verbosity: minimal
|
|
configuration:
|
|
- Debug
|
|
test:
|
|
test_script:
|
|
- cd %APPVEYOR_BUILD_FOLDER%\win_build\mysql-test
|
|
- perl mysql-test-run.pl --force --max-test-fail=20 --parallel=6 --testcase-timeout=4 --skip-test-list=unstable-tests --suite=main,innodb,plugins,mariabackup
|
|
image: Visual Studio 2017
|