forked from s3fs-fuse/s3fs-fuse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request s3fs-fuse#248 from andrewgaul/travis-docker
Enable integration tests for Travis
- Loading branch information
Showing
1 changed file
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |