diff options
Diffstat (limited to '.builds/openbsd.yml')
-rw-r--r-- | .builds/openbsd.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml index 1ac830e6ad..a8f6992e3f 100644 --- a/.builds/openbsd.yml +++ b/.builds/openbsd.yml @@ -28,11 +28,14 @@ tasks: cd .. mkdir build cd build - cmake -G Ninja .. + cmake -G Ninja -DMIN_LOG_LEVEL=3 .. cmake --build . --config Debug ./bin/nvim --version - test: | export LC_CTYPE=en_US.UTF-8 - cd neovim + # functional tests + cd neovim/build + # cmake --build . --config Debug --target functionaltest # oldtests - gmake -C src/nvim/testdir NVIM_PRG=`pwd`/build/bin/nvim + cd .. + gmake oldtest |