mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
21 lines
655 B
YAML
21 lines
655 B
YAML
version: build-{build}~branch-{branch}
|
|
|
|
before_build:
|
|
- md %APPVEYOR_BUILD_FOLDER%\win_build
|
|
- cd %APPVEYOR_BUILD_FOLDER%\win_build
|
|
- cmake .. -G "Visual Studio 15 2017 Win64" -DWITH_UNIT_TESTS=0
|
|
|
|
build:
|
|
project: win_build\MySQL.sln
|
|
parallel: true
|
|
verbosity: minimal
|
|
|
|
configuration: RelWithDebInfo
|
|
platform: x64
|
|
|
|
test_script:
|
|
- set PATH=%PATH%;C:\Program Files (x86)\Windows Kits\10\Debuggers\x64
|
|
- cd %APPVEYOR_BUILD_FOLDER%\win_build\mysql-test
|
|
- perl mysql-test-run.pl --force --max-test-fail=10 --parallel=auto --testcase-timeout=10 --skip-test-list=unstable-tests --suite=main,innodb,plugins,mariabackup
|
|
|
|
image: Visual Studio 2017
|