From 0089ef6b652ee455c9491a1a11f23939cfb63a08 Mon Sep 17 00:00:00 2001 From: Rui Abreu Ferreira Date: Mon, 15 Aug 2016 00:01:04 +0100 Subject: [PATCH] Appveyor: Enable functional tests Most functional tests don't work on Windows yet, for now enable a subset of the tests in Appveyor builds. --- .ci/build.bat | 7 ++++--- 1 file 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