diff options
author | Attila Molnar <attilamolnar@hush.com> | 2016-09-16 10:55:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-16 10:55:58 +0200 |
commit | d8a41d73a329b72a7d997a1808007f5de38b68d7 (patch) | |
tree | 774711e431feb32f928676431a588a0e71c25d92 /.travis.yml | |
parent | 05953e35b03a8136f5906e0add89412f02bfca36 (diff) | |
parent | fb029add367bde0b8cb7b719034a39429e59c64c (diff) |
Merge pull request #1223 from SaberUK/master+travis
Speed up Travis builds.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 631802526..f5c1fff54 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,13 @@ compiler: - - "clang" - - "gcc" -language: "cpp" + - clang + - gcc +dist: trusty +env: + - TEST_BUILD_DYNAMIC=1 + - TEST_BUILD_STATIC=1 +language: cpp notifications: email: false -os: - - "linux" - - "osx" script: - - "sh ./tools/travis-ci.sh" + - sh ./tools/travis-ci.sh sudo: required |