summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 10 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 6cba405..1a1d312 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,10 +12,18 @@ go:
install:
- go get .
-# Travis does not support FUSE, so we can't just run "./test.bash"
# Go 1.3.3 does not support testing.M, so skip the tests there.
script:
- openssl version
- go build
- ./build.bash
- - if ! go version | grep go1.3.3 ; then go test ./internal/... ; fi
+ - if ! go version | grep go1.3.3 ; then ./test.bash ; fi
+
+# fuse on travis
+sudo: required
+dist: trusty
+before_install:
+ - sudo apt-get install -qq fuse
+ - sudo modprobe fuse
+ - sudo chmod 666 /dev/fuse
+ - sudo chown root:$USER /etc/fuse.conf