2015-02-18 16:52:28 +01:00
|
|
|
language: cpp
|
2015-04-08 17:02:07 +02:00
|
|
|
sudo: required
|
2016-02-11 03:11:39 +01:00
|
|
|
dist: trusty
|
2015-02-18 16:52:28 +01:00
|
|
|
compiler:
|
|
|
|
- gcc
|
2016-02-11 03:08:32 +01:00
|
|
|
- clang
|
2016-02-11 04:26:26 +01:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- os: osx
|
2016-02-11 04:28:16 +01:00
|
|
|
- compiler: clang
|
2016-02-11 03:16:18 +01:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- libcrypto++-dev
|
2016-02-11 12:14:44 +01:00
|
|
|
- libfuse-dev
|
2016-02-11 03:16:18 +01:00
|
|
|
install:
|
|
|
|
- wget -O boost.tar.bz2 https://sourceforge.net/projects/boost/files/boost/1.56.0/boost_1_56_0.tar.bz2/download
|
|
|
|
- tar -xf boost.tar.bz2
|
|
|
|
- cd boost_1_56_0
|
2016-02-11 04:28:16 +01:00
|
|
|
# TODO We should use clang as toolchain for building boost when clang is used for building our code
|
2016-02-11 14:06:24 +01:00
|
|
|
- ./bootstrap.sh --with-libraries=filesystem,thread,chrono
|
2016-02-11 03:16:18 +01:00
|
|
|
- sudo ./b2 -d0 install
|
|
|
|
- cd ..
|
2016-02-11 04:28:16 +01:00
|
|
|
- sudo rm -rf boost.tar.bz2 boost_1_56_0
|
2016-02-11 14:23:14 +01:00
|
|
|
- mkdir cmake
|
|
|
|
- cd cmake
|
2015-02-20 20:45:56 +01:00
|
|
|
- wget https://raw.githubusercontent.com/smessmer/travis-utils/master/run_with_fuse.sh
|
2016-02-11 12:14:44 +01:00
|
|
|
- chmod +x run_with_fuse.sh
|
2015-02-18 16:52:28 +01:00
|
|
|
script:
|
2016-02-11 03:07:10 +01:00
|
|
|
- cmake ..
|
|
|
|
- make -j2
|
2016-02-11 14:37:10 +01:00
|
|
|
- ./test/cpp-utils/cpp-utils-test
|
|
|
|
- ./run_with_fuse.sh ./test/fspp/fspp-test
|
|
|
|
- ./test/parallelaccessstore/parallelaccessstore-test
|
2016-02-11 12:14:44 +01:00
|
|
|
after_script:
|
|
|
|
- rm run_with_fuse.sh
|