aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: a1f56f68b62b723857a6dbc3f2885e9488c3dae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 .

# Travis does not support FUSE, so we can't just run "go test ./..."
script:
  - openssl version
  - go build
  - ./build.bash
  - go test ./internal/...