mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-05 04:17:52 +00:00
19 lines
469 B
YAML
19 lines
469 B
YAML
language: cpp
|
|
dist: trusty
|
|
cache: apt
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq libfuse-dev cppcheck
|
|
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
|