You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .travis.yml
+2-2
Original file line number
Diff line number
Diff line change
@@ -5,14 +5,14 @@ compiler:
5
5
before_install:
6
6
- echo $LANG
7
7
- echo $LC_ALL
8
-
- if [ $TRAVIS_OS_NAME == linux ]; then LLVM_TAR=llvm-3.4.2-x86_64-unknown-linux-gnu-4.7.tar.bz2 curl -o $LLVM_TAR https://s3.amazonaws.com/asset.rubini.us/prebuilt/$LLVM_TAR && mkdir vendor/llvm && cd vendor/llvm && tar -xjf $LLVM_TAR; fi
8
+
- if [ $TRAVIS_OS_NAME == linux ]; then ./scripts/llvm.sh; fi
9
9
- if [ $TRAVIS_OS_NAME == osx ]; then brew update && brew install llvm35 && brew link --force llvm35; fi
10
10
- rvm use $RVM --install --binary --fuzzy
11
11
- gem update --system
12
12
- gem --version
13
13
before_script:
14
14
- travis_retry bundle
15
-
- if [ $TRAVIS_OS_NAME == linux ]; then travis_retry ./configure --llvm-config./vendor/llvm/Release/bin/llvm-config; fi
15
+
- if [ $TRAVIS_OS_NAME == linux ]; then travis_retry ./configure --llvm-config=./vendor/llvm/Release/bin/llvm-config; fi
16
16
- if [ $TRAVIS_OS_NAME == osx ]; then travis_retry ./configure; fi
0 commit comments