1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-24 14:23:34 +03:00
vimr/bin/build_travis.sh

26 lines
325 B
Bash
Raw Normal View History

2017-05-04 23:41:09 +03:00
#!/bin/bash
set -e
set -x
echo "### Building libnvim"
pushd neovim
ln -f -s ../local.mk .
rm -rf build
make distclean
echo "### Building libnvim"
make libnvim
popd
echo "### Updating carthage"
carthage update --platform osx
echo "### Executing tests"
xcodebuild test -scheme SwiftNeoVim
xcodebuild test -scheme VimR