mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Appveyor: Enable functional tests
Most functional tests don't work on Windows yet, for now enable a subset of the tests in Appveyor builds.
This commit is contained in:
parent
703cf3197f
commit
0089ef6b65
@ -28,13 +28,14 @@ cd ..
|
|||||||
:: Build Neovim
|
:: Build Neovim
|
||||||
mkdir build
|
mkdir build
|
||||||
cd 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
|
mingw32-make VERBOSE=1 || goto :error
|
||||||
bin\nvim --version || goto :error
|
bin\nvim --version || goto :error
|
||||||
cd ..
|
|
||||||
|
:: Functional tests
|
||||||
|
mingw32-make functionaltest VERBOSE=1 || goto :error
|
||||||
|
|
||||||
:: Build artifacts
|
:: Build artifacts
|
||||||
cd build
|
|
||||||
cpack -G ZIP -C Release
|
cpack -G ZIP -C Release
|
||||||
if defined APPVEYOR_REPO_TAG_NAME cpack -G NSIS -C Release
|
if defined APPVEYOR_REPO_TAG_NAME cpack -G NSIS -C Release
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user