1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-01 10:02:36 +03:00
vimr/bin/build_travis.sh
Tae Won Ha 866540dac4
Include pre-built libintl in the repository
- to eliminate warnings
- libintl.a and libintl.dylib are pre-built for 10.10
- When building neovim we have to pass the libintl location
2017-05-07 13:17:09 +02:00

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"
CFLAGS='-mmacosx-version-min=10.10' MACOSX_DEPLOYMENT_TARGET=10.10 LibIntl_INCLUDE_DIRS=../third-party/libintl make libnvim
popd
echo "### Updating carthage"
carthage update --platform osx --cache-builds
echo "### Executing tests"
xcodebuild test -scheme SwiftNeoVim
xcodebuild test -scheme VimR