mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-17 17:55:12 +00:00
39d4715b82
Mail from the Travis team: Thanks for the email. I have set up s3fs-fuse/s3fs-fuse with our alpha testing stack which may allow you to use FUSE. To use it, add the following to your .travis.yml: dist: trusty Please keep in mind that the service may become unavailable without notice, and change details. We welcome your feedback as to what works and what does not with this setup.
16 lines
331 B
YAML
16 lines
331 B
YAML
language: cpp
|
|
dist: trusty
|
|
cache: apt
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq libfuse-dev
|
|
script:
|
|
- ./autogen.sh
|
|
- ./configure
|
|
- make
|
|
- make check -C src
|
|
# Travis granted s3fs access to their upcoming alpha testing stack which may
|
|
# allow us to use FUSE.
|
|
- modprobe fuse
|
|
- make check -C test
|