aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorneusdan <neusdan>2015-03-12 23:21:21 +0000
committerlloyd <[email protected]>2015-03-12 23:21:21 +0000
commitcd0255a904bbd5211466c14edd31248c4a17025e (patch)
tree6194ea490c847367748c67079f44d7866fd49863 /.travis.yml
parent3700e0b76dfa169a3af0545f2eda33437e3e5d61 (diff)
Add Travis CI integration. Github pull 60
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000000000..ad7c8a0c1
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,22 @@
+compiler:
+ - gcc
+
+language: cpp
+
+before_install:
+ - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
+ - sudo apt-get update -qq
+
+install:
+ - sudo apt-get install -qq g++-4.8
+ - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
+ - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90
+
+script:
+ - $CXX --version
+ - python configure.py
+ - "make"
+ - "LD_LIBRARY_PATH=. ./botan-test"
+
+os:
+ - linux