Files
ldc/.travis.yml
David Nadlinger c0980de3af Testsuite updates; run it as part of CI builds.
Only can run a quick build because of Travis time restrictions. Should
try to find a set of most-likely-to-fail command line args, maybe
"-O -gc -fPIC"?
2012-09-29 20:59:06 +02:00

29 lines
676 B
YAML

language: cpp
install:
- sudo apt-get update -qq
# The Ubuntu 12.04 repos only have LLVM 3.0, should find a 3.1 PPA.
- sudo apt-get install -qq llvm-3.0-dev libconfig++8-dev
env:
- DVER=1
- DVER=2
before_script:
- git submodule update --init --recursive
script:
- cmake -DD_VERSION=$DVER -DLLVM_CONFIG=/usr/bin/llvm-config-3.0
- make
- make test || { cat Testing/Temporary/LastTest.log; exit 1; }
notifications:
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