mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-20 20:21:58 +03:00
25 lines
444 B
Bash
Executable File
25 lines
444 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "### Building libnvim"
|
|
|
|
pushd neovim
|
|
|
|
ln -f -s ../local.mk .
|
|
|
|
rm -rf build
|
|
make distclean
|
|
|
|
echo "### Building libnvim"
|
|
make CFLAGS='-mmacosx-version-min=10.10' MACOSX_DEPLOYMENT_TARGET=10.10 CMAKE_EXTRA_FLAGS="-DGETTEXT_SOURCE=CUSTOM" libnvim
|
|
|
|
popd
|
|
|
|
echo "### Updating carthage"
|
|
carthage update --platform osx --cache-builds
|
|
|
|
echo "### Executing tests"
|
|
xcodebuild test -scheme SwiftNeoVim
|
|
xcodebuild test -scheme VimR
|