summaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: a005fc5a93f28f587ffb7dffafd0dc3063e85543 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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