summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-08-18 08:25:32 +0200
committerCNugteren <web@cedricnugteren.nl>2015-08-18 08:25:32 +0200
commit154b611546b4e70750d7636b18a01b9e7891257f (patch)
treeb6de89d3a3318aa62b57bcf4affc9c4213826d85 /.travis.yml
parentad4aade5d555331b43b3ff72723f809b0286bc09 (diff)
Added GCC 4.8 and updated CMake
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml22
1 files changed, 17 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 0bbd8f5c..2b1a3ee5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,19 +1,31 @@
language: cpp
-
compiler:
- gcc
-
+install:
+ - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
+addons:
+ apt:
+ sources:
+ - ubuntu-toolchain-r-test
+ - kalakris-cmake
+ packages:
+ - gcc-4.8
+ - g++-4.8
+ - clang
+ - cmake
before_script:
- cd ${TRAVIS_BUILD_DIR}
- mkdir build
- mkdir install
- cd build
- cmake -DCMAKE_INSTALL_PREFIX:PATH=../install ..
-
-script:
+script:
+ - make
- make install
- export PATH=${TRAVIS_BUILD_DIR}/install/bin:${PATH}
- export LD_LIBRARY_PATH=${TRAVIS_BUILD_DIR}/install/lib64:${LD_LIBRARY_PATH}
-
after_success:
- which test_xgemm
+notifications:
+ email: false
+sudo: false