diff options
author | chriseth <c@ethdev.com> | 2016-06-24 22:25:19 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-06-26 07:17:34 +0800 |
commit | 7cfd4d62e4f6dcea0ea3722f5ba4c6562674ba29 (patch) | |
tree | df92898be0d8a88b8e42a3bd49b659c1fa158f58 /.travis.yml | |
parent | b23c30079283095e54eb9678a88dda95d895dd6e (diff) | |
download | dexon-solidity-7cfd4d62e4f6dcea0ea3722f5ba4c6562674ba29.tar.gz dexon-solidity-7cfd4d62e4f6dcea0ea3722f5ba4c6562674ba29.tar.zst dexon-solidity-7cfd4d62e4f6dcea0ea3722f5ba4c6562674ba29.zip |
Use travis for tests, too.
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 |