2015-03-07 20:05:20 +00:00
|
|
|
language: cpp
|
2015-04-18 00:53:39 +00:00
|
|
|
dist: trusty
|
2015-04-18 13:45:58 +00:00
|
|
|
cache: apt
|
2015-03-07 20:05:20 +00:00
|
|
|
before_install:
|
|
|
|
- sudo apt-get update -qq
|
2015-08-18 09:56:51 +00:00
|
|
|
- sudo apt-get install -qq libfuse-dev cppcheck
|
2015-03-07 20:05:20 +00:00
|
|
|
script:
|
|
|
|
- ./autogen.sh
|
|
|
|
- ./configure
|
|
|
|
- make
|
2015-08-18 09:56:51 +00:00
|
|
|
- make cppcheck
|
2015-03-07 20:05:20 +00:00
|
|
|
- make check -C src
|
2015-04-18 00:53:39 +00:00
|
|
|
# Travis granted s3fs access to their upcoming alpha testing stack which may
|
|
|
|
# allow us to use FUSE.
|
2015-06-18 18:28:10 +00:00
|
|
|
# TODO: Travis changed their infrastructure some time in June 2015 such that
|
|
|
|
# this does not work currently
|
|
|
|
#- modprobe fuse
|
|
|
|
#- make check -C test
|