Skip to content

Commit

Permalink
Try to use Clang 3.7 and GCC 5.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
wilx committed Nov 8, 2015
1 parent ec7e9fd commit 6ff4fc5
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ compiler:
addons: &addons
apt:
packages: &packages
- g++-4.9
- gcc-4.9
- clang-3.6
- libstdc++-4.9-dev
- g++-5.2
- gcc-5.2
- clang-3.7
- swig
- python
- qtbase5-dev
Expand Down Expand Up @@ -42,6 +41,19 @@ env:
before_install:
- lsb_release -a
before_script:
- case "$CXX" in #(
g++*) CXX=g++-5.2 #(
;;
clang++*) CXX=clang++-3.7
;;
esac
- case "$CC" in #(
gcc*) CXX=gcc-5.2 #(
;;
clang*) CXX=clang-3.7
;;
esac
- export CXX CC
- sh ./scripts/fix-timestamps.sh
- mkdir objdir
- cd objdir
Expand Down

0 comments on commit 6ff4fc5

Please sign in to comment.