mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-29 03:53:38 +03:00
24 lines
316 B
Bash
Executable File
24 lines
316 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "### Building libnvim"
|
|
|
|
pushd neovim
|
|
|
|
ln -f -s ../local.mk .
|
|
|
|
rm -rf build
|
|
make distclean
|
|
|
|
../bin/build_libnvim.sh
|
|
|
|
popd
|
|
|
|
echo "### Updating carthage"
|
|
carthage update --platform osx --cache-builds
|
|
|
|
echo "### Executing tests"
|
|
xcodebuild test -scheme SwiftNeoVim
|
|
xcodebuild test -scheme VimR
|