diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml index 07458841..3a4115f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,15 @@ -# This is used to verify that the documentation compiles. -language: python -python: - - "2.7" -# command to install dependencies -install: "pip install -q Sphinx==1.1.3 --use-mirrors" -# command to run tests -script: cd docs && sphinx-build -nW -b html -d _build/doctrees . _build/html -# Flags used here, not in `make html`: -# -n Run in nit-picky mode. Currently, this generates warnings for all missing references. -# -W Turn warnings into errors. This means that the build stops at the first warning and sphinx-build exits with exit status 1. +language: cpp +cache: ccache +matrix: + include: + - os: linux + dist: trusty + sudo: required + env: TRAVIS_BUILD_TYPE=Debug + - os: osx + osx_image: xcode7.3 + env: TRAVIS_BUILD_TYPE=Debug +git: + depth: 2 +before_install: ./install_dependencies.sh +script: ./fetch_umbrella_build_and_test.sh
\ No newline at end of file |