Skip to content

Commit

Permalink
travis: disable llvm.org-hosted clang versions
Browse files Browse the repository at this point in the history
They are currently offline, I plan to revert this commit as soon as
they are back.
  • Loading branch information
nemequ committed Jun 15, 2016
1 parent 53688d5 commit a0e6c91
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .travis-install-compiler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ case "${TRAVIS_OS_NAME}" in
sudo apt-add-repository -y ppa:ubuntu-toolchain-r/test

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys AF4F7421
for CLANG_VERSION in 3.4 3.5 3.6 3.7; do
sudo apt-add-repository -y \
"deb http://llvm.org/apt/${DISTRIB_CODENAME}/ llvm-toolchain-${DISTRIB_CODENAME}-${CLANG_VERSION} main"
done
# for CLANG_VERSION in 3.4 3.5 3.6 3.7; do
# sudo apt-add-repository -y \
# "deb http://llvm.org/apt/${DISTRIB_CODENAME}/ llvm-toolchain-${DISTRIB_CODENAME}-${CLANG_VERSION} main"
# done

sudo apt-get update -qq

Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ env:
- COMPILER=gcc-5 CFLAGS="-fsanitize=address -fsanitize=undefined"
- COMPILER=gcc-5 CFLAGS="-std=c11"
- COMPILER=clang
- COMPILER=clang-3.7
# - COMPILER=clang-3.7
- COMPILER=gcc-4.9 CFLAGS="-fsanitize=address -fsanitize=undefined"
- COMPILER=clang-3.6 CFLAGS="-fsanitize=address -fsanitize=undefined"
- COMPILER=gcc-4.8 CFLAGS="-fsanitize=address"
- COMPILER=gcc-4.7
- COMPILER=gcc-4.6
- COMPILER=gcc-4.4
- COMPILER=clang-3.5 CFLAGS="-fsanitize=address -fsanitize=undefined"
- COMPILER=clang-3.4 CFLAGS="-fsanitize=address -fsanitize=undefined"
# - COMPILER=clang-3.5 CFLAGS="-fsanitize=address -fsanitize=undefined"
# - COMPILER=clang-3.4 CFLAGS="-fsanitize=address -fsanitize=undefined"
- COMPILER=x86_64-w64-mingw32-gcc EXTENSION=".exe"
- COMPILER=i686-w64-mingw32-gcc EXTENSION=".exe"
global:
Expand Down

0 comments on commit a0e6c91

Please sign in to comment.