Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 52fd82f

Browse files
committedDec 28, 2015
Try Trusty distro on Travis.
1 parent e6aafbd commit 52fd82f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎.travis.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
language: cpp
2+
sudo: required
3+
dist: trusty
24
compiler:
35
- clang
46
before_install:
57
- echo $LANG
68
- echo $LC_ALL
7-
- if [ $TRAVIS_OS_NAME == linux ]; then ./scripts/llvm.sh; fi
9+
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get update && sudo apt-get install llvm-3.6; fi
810
- if [ $TRAVIS_OS_NAME == osx ]; then brew update && brew install llvm; fi
911
- rvm use $RVM --install --binary --fuzzy
1012
- gem update --system
1113
- gem --version
1214
before_script:
1315
- travis_retry bundle
14-
- if [ $TRAVIS_OS_NAME == linux ]; then travis_retry ./configure --llvm-config=./vendor/llvm/Release/bin/llvm-config; fi
16+
- if [ $TRAVIS_OS_NAME == linux ]; then travis_retry ./configure --llvm-config=llvm-config-3.6; fi
1517
- if [ $TRAVIS_OS_NAME == osx ]; then travis_retry ./configure; fi
1618
script: rake ci
1719
after_success:
@@ -55,4 +57,3 @@ env:
5557
os:
5658
- linux
5759
- osx
58-
sudo: false

0 commit comments

Comments
 (0)
Please sign in to comment.