divide and conquer

This commit is contained in:
Eric Vergnaud 2016-11-28 02:44:07 +08:00
parent c3f9cb3cc7
commit 0cf3c2cf50
3 changed files with 7 additions and 6 deletions

View File

@ -8,6 +8,12 @@ matrix:
include:
- os: linux
jdk: oraclejdk7
env:
- TARGET=cpp
- CXX=g++-5
- os: osx
compiler: clang
osx_image: xcode8.1
env: TARGET=cpp
- os: linux
jdk: oraclejdk7
@ -34,10 +40,6 @@ matrix:
compiler: clang
osx_image: xcode8.1
env: TARGET=swift
- os: osx
compiler: clang
osx_image: xcode8.1
env: TARGET=cpp
before_install:
- ./.travis/before-install-$TRAVIS_OS_NAME-$TARGET.sh

View File

@ -6,5 +6,3 @@ sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328
sudo add-apt-repository ppa:fkrull/deadsnakes -y
sudo add-apt-repository ppa:rwky/nodejs -y
sudo apt-get update -qq
export CXX=g++-5

View File

@ -5,6 +5,7 @@ set -euo pipefail
thisdir=$(dirname "$0")
brew update
brew install cmake
# Work around apparent rvm bug that is in Travis's Xcode image.
# https://github.com/direnv/direnv/issues/210