Skip to content

Commit

Permalink
Travis integration
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 committed Dec 24, 2014
1 parent 722f02d commit f66d2a7
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
@@ -0,0 +1,16 @@
language: cpp
compiler:
- gcc
- clang
env:
- CXX11=1
- CXX11=0
before_install: ./util/travis/before_install.sh
script: ./util/travis/script.sh
notifications:
email: false
matrix:
fast_finish: true
exclude:
- env: CXX11=1
compiler: gcc
18 changes: 18 additions & 0 deletions util/travis/before_install.sh
@@ -0,0 +1,18 @@
#!/bin/bash -e

if [ $CC = "clang" ]; then
export PATH="/usr/bin/:$PATH"
sudo sh -c 'echo "deb http://ppa.launchpad.net/eudoxos/llvm-3.1/ubuntu precise main" >> /etc/apt/sources.list'
sudo apt-key adv --keyserver pool.sks-keyservers.net --recv-keys 92DE8183
sudo apt-get update
sudo apt-get install llvm-3.1
sudo apt-get install clang
fi

sudo apt-get install cmake libgd2-noxpm-dev libsqlite3-dev \
p7zip-full

# I love how nothing ever works correctly with precise
wget http://sfan5.pf-control.de/libleveldb-1.18-ubuntu12.04.7z
sudo 7z x -o/usr libleveldb-1.18-ubuntu12.04.7z

6 changes: 6 additions & 0 deletions util/travis/script.sh
@@ -0,0 +1,6 @@
#!/bin/bash -e

mkdir -p travisbuild
cd travisbuild
cmake -DENABLE_LEVELDB=1 -DUSE_CXX11=$CXX11 ..
make -j2

0 comments on commit f66d2a7

Please sign in to comment.