You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
744 B

  1. version: build-{build}~branch-{branch}
  2. before_build:
  3. - md %APPVEYOR_BUILD_FOLDER%\win_build
  4. - cd %APPVEYOR_BUILD_FOLDER%\win_build
  5. - cmake .. -DWITH_UNIT_TESTS=0 -DWITH_MARIABACKUP=0 -DMYSQL_MAINTAINER_MODE=ERR -DPLUGIN_ROCKSDB=NO -DPLUGIN_CONNECT=NO -DBISON_EXECUTABLE=C:\cygwin64\bin\bison
  6. build:
  7. project: win_build\MySQL.sln
  8. parallel: true
  9. verbosity: minimal
  10. configuration: RelWithDebInfo
  11. platform: x64
  12. test_script:
  13. - set PATH=C:\Strawberry\perl\bin;%PATH%;C:\Program Files (x86)\Windows Kits\10\Debuggers\x64
  14. - cd %APPVEYOR_BUILD_FOLDER%\win_build\mysql-test
  15. - perl mysql-test-run.pl --force --max-test-fail=10 --parallel=4 --testcase-timeout=10 --skip-test-list=unstable-tests --suite=main
  16. image: Visual Studio 2019