mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-24 14:23:34 +03:00
26 lines
325 B
Bash
26 lines
325 B
Bash
|
#!/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
|