Files
ldc/.travis.yml
David Nadlinger 84a00b3fe9 Stop running Travis tests using LLVM 3.0.
Sets the stage for removal of 3.0 support.
2013-05-31 20:48:38 +02:00

29 lines
848 B
YAML

language: cpp
install:
- echo yes | sudo add-apt-repository ppa:dr-graef/llvm-3.1.precise
- sudo apt-get update -qq
- sudo apt-get install -qq $LLVM_PACKAGE libconfig++8-dev
env:
- DVER=2 LLVM_PACKAGE=llvm-3.1 LLVM_VERSION=3.1 TESTSUITE_FILTER=debug
- DVER=2 LLVM_PACKAGE=llvm-3.1 LLVM_VERSION=3.1 TESTSUITE_FILTER=release
script:
- cmake -DD_VERSION=$DVER -DLLVM_CONFIG=/usr/bin/llvm-config-$LLVM_VERSION
- make
- bin/ldc2 -version # For environment info.
- ctest --output-on-failure -R $TESTSUITE_FILTER
notifications:
# Temporarily disabled due to time limit problems.
# email:
# recipients:
# - "ldc-dev@googlegroups.com"
# on_success: never
# on_failure: change
irc:
channels:
- "irc.freenode.org#ldc"
on_success: always
on_failure: always
use_notice: false
skip_join: true