From 6ecd2e993b39e835b88fe9cc7657e8a64552f029 Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Sun, 16 Sep 2012 21:58:59 +0200 Subject: [PATCH] Initial config for Travis CI (travis-ci.org). Doesn't run any tests so far, only tests if everything builds. --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..bb9987a9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +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