1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-26 23:36:08 +03:00

Try to cache Carthage's build folder on travis

This commit is contained in:
Tae Won Ha 2017-05-04 22:51:59 +02:00
parent 7bbb2f8b8d
commit ea85791060
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
2 changed files with 9 additions and 1 deletions

View File

@ -1,9 +1,17 @@
language: objective-c language: objective-c
osx_image: xcode8.3 osx_image: xcode8.3
git: git:
depth: 1 depth: 1
cache:
directories:
- Carthage
before_install: before_install:
- brew update - brew update
- brew upgrade carthage
- brew install libtool automake gettext ninja - brew install libtool automake gettext ninja
script: script:
- ./bin/build_travis.sh - ./bin/build_travis.sh

View File

@ -18,7 +18,7 @@ make libnvim
popd popd
echo "### Updating carthage" echo "### Updating carthage"
carthage update --platform osx carthage update --platform osx --cache-builds
echo "### Executing tests" echo "### Executing tests"
xcodebuild test -scheme SwiftNeoVim xcodebuild test -scheme SwiftNeoVim