Files
ldc/.travis.yml
David Nadlinger d05b9b71cf Temporarily disable Travis mail notifications.
If we can work out something regarding the spurious failures
caused by the arbitrary time limit, this can be re-enabled.
2012-12-08 23:58:43 +01:00

29 lines
787 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=1 LLVM_PACKAGE=llvm-3.1 LLVM_VERSION=3.1
- DVER=2 LLVM_PACKAGE=llvm-3.0-dev LLVM_VERSION=3.0
- DVER=2 LLVM_PACKAGE=llvm-3.1 LLVM_VERSION=3.1
script:
- cmake -DD_VERSION=$DVER -DLLVM_CONFIG=/usr/bin/llvm-config-$LLVM_VERSION
- make
- ctest --output-on-failure
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