diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-05-12 17:14:34 +0300 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-05-12 18:07:36 +0300 |
commit | 3e7f5f34e3dea78707d2c384ef84ce3d3a34e534 (patch) | |
tree | 25a08549d7867ddda78cc2788ee1c7a24f83abd0 /.travis.yml | |
parent | 17af488048a394e06a85ec5b026ca4968db9fbc4 (diff) | |
download | qtlocation-mapboxgl-3e7f5f34e3dea78707d2c384ef84ce3d3a34e534.tar.gz |
[build] Explicitely set Clang as compiler in 'check' Travis CI build
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 5c9d29f3b2..2f065a0de6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -70,13 +70,14 @@ after_success: matrix: include: - # LLVM 3.8.0 - clang-{format,tidy} + # Clang 3.9.0 / clang-{format,tidy} 4.0.0 - os: linux - sudo: false + sudo: required dist: trusty language: cpp - env: _CXX=c++ _CC=cc compiler: "check" + env: _CXX=clang++-3.9 _CC=clang-3.9 + addons: *clang39 script: - git fetch origin master:refs/remotes/origin/master - make check |