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

24 lines
316 B
Bash
Raw Normal View History

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