diff options
author | neusdan <neusdan> | 2015-03-12 23:21:21 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-03-12 23:21:21 +0000 |
commit | cd0255a904bbd5211466c14edd31248c4a17025e (patch) | |
tree | 6194ea490c847367748c67079f44d7866fd49863 /.travis.yml | |
parent | 3700e0b76dfa169a3af0545f2eda33437e3e5d61 (diff) |
Add Travis CI integration. Github pull 60
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 22 |
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 |