summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: d8489114a8bc8447ff9a39f41af5dc3c14685a2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
language: go

# Build with the lastest versions of Go 1.4, 1.5, 1.6, 1.7
# See https://golang.org/dl/
go:
  - 1.4.3
  - 1.5.4
  - 1.6.3
  - 1.7.1

install:
  - go get .

script:
  - openssl version
  - go build
  - ./build-without-openssl.bash
  - ./build.bash
  - ./test.bash

# 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