summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 1a1d312e43841d276e467bbcfa891f32de647010 (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
29
language: go

# Debian Jessie has Go 1.3.3, Fedora 22 has Go 1.4.3,
# Fedora 23 has Go 1.5.1
go:
  - 1.3.3
  - 1.4.3
  - 1.5.1
  - 1.6
  - tip

install:
  - go get .

# 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 ./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