aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRui Abreu Ferreira <raf-ep@gmx.com>2016-08-15 00:01:04 +0100
committerRui Abreu Ferreira <rap-ep@gmx.com>2016-08-26 08:21:41 +0100
commit0089ef6b652ee455c9491a1a11f23939cfb63a08 (patch)
treedecbad51c332f49b74fc2582fc23f7ead7e6524a
parent703cf3197f12feb8a0f8a1e072ea93774cac9914 (diff)
downloadrneovim-0089ef6b652ee455c9491a1a11f23939cfb63a08.tar.gz
rneovim-0089ef6b652ee455c9491a1a11f23939cfb63a08.tar.bz2
rneovim-0089ef6b652ee455c9491a1a11f23939cfb63a08.zip
Appveyor: Enable functional tests
Most functional tests don't work on Windows yet, for now enable a subset of the tests in Appveyor builds.
-rw-r--r--.ci/build.bat7
1 files changed, 4 insertions, 3 deletions
diff --git a/.ci/build.bat b/.ci/build.bat
index 2f545fbe82..e7c42be7fa 100644
--- a/.ci/build.bat
+++ b/.ci/build.bat
@@ -28,13 +28,14 @@ cd ..
:: Build Neovim
mkdir build
cd build
-cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release .. || goto :error
+cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -DBUSTED_OUTPUT_TYPE=gtest .. || goto :error
mingw32-make VERBOSE=1 || goto :error
bin\nvim --version || goto :error
-cd ..
+
+:: Functional tests
+mingw32-make functionaltest VERBOSE=1 || goto :error
:: Build artifacts
-cd build
cpack -G ZIP -C Release
if defined APPVEYOR_REPO_TAG_NAME cpack -G NSIS -C Release