From 94e3dbb2dc3e6de253d2313a4d0848e61fd46803 Mon Sep 17 00:00:00 2001 From: Andrew Gaul Date: Wed, 19 Aug 2015 14:07:27 -0700 Subject: [PATCH] Enable integration tests for Travis http://blog.travis-ci.com/2015-10-14-opening-up-ubuntu-trusty-beta/ --- .travis.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index da42355..1beea25 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,18 +1,16 @@ language: cpp +sudo: required dist: trusty cache: apt before_install: - sudo apt-get update -qq - - sudo apt-get install -qq libfuse-dev cppcheck + - sudo apt-get install -qq cppcheck libfuse-dev openjdk-7-jdk script: - ./autogen.sh - ./configure - make - make cppcheck - make check -C src - # Travis granted s3fs access to their upcoming alpha testing stack which may - # allow us to use FUSE. - # TODO: Travis changed their infrastructure some time in June 2015 such that - # this does not work currently - #- modprobe fuse - #- make check -C test + - modprobe fuse + - make check -C test + - cat test/test-suite.log