mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 02:54:31 +03:00
Streamline travis build
This commit is contained in:
parent
fae99f88e5
commit
7bbb2f8b8d
@ -6,6 +6,4 @@ before_install:
|
||||
- brew update
|
||||
- brew install libtool automake gettext ninja
|
||||
script:
|
||||
- ./bin/build_vimr.sh false
|
||||
- xcodebuild test -scheme SwiftNeoVim
|
||||
- xcodebuild test -scheme VimR
|
||||
- ./bin/build_travis.sh
|
||||
|
25
bin/build_travis.sh
Executable file
25
bin/build_travis.sh
Executable file
@ -0,0 +1,25 @@
|
||||
#!/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
|
Loading…
Reference in New Issue
Block a user