diff options
author | Daniel Black <daniel.black@au.ibm.com> | 2017-07-20 10:32:25 +1000 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2017-12-25 12:00:52 +0100 |
commit | e8182df1425321d67887359d481aaa18ad36e70f (patch) | |
tree | e778060fb72873b0fa94171ec630faa1cf1f7d49 /appveyor.yml | |
parent | 76056559ac7cacfe176f6e131ce3bc7bfc749890 (diff) | |
download | mariadb-git-e8182df1425321d67887359d481aaa18ad36e70f.tar.gz |
MDEV-12386: Use AppVeyor for public Windows CI
Signed-off-by: Daniel Black <daniel.black@au.ibm.com>
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000000..bc4f4d83528 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,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" -DBOOST_ROOT=C:\Libraries\boost_1_64_0 -DPKG_CONFIG_EXECUTABLE=C:\perl\bin\pkg-config -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=2 --skip-test-list=unstable-tests --suite=main,innodb,plugins,mariabackup +image: Visual Studio 2017 |