summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 9e677df60e43aa94161fed0af225c1b97d9bca1b (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
30
31
32
33
34
35
36
37
38
39
40
41
42
language: go

# fuse on travis
sudo: required
dist: trusty

git:
  depth: 100

# Build with the lastest versions of Go 1.7 and later
# See https://golang.org/dl/
go:
  - 1.7.x
  - 1.8.x
  - 1.9.x
  - 1.10.x
  - stable

before_install:
  - sudo apt-get install -qq fuse
  - sudo modprobe fuse
  - sudo chmod 666 /dev/fuse
  - sudo chown root:$USER /etc/fuse.conf

install:
  - go get -v .
  - wget https://github.com/golang/dep/releases/download/v0.3.2/dep-linux-amd64 -O dep
  - chmod +x dep

script:
  - openssl version
  - go build
  - ./build-without-openssl.bash
  - ./build.bash
  - ./gocryptfs -speed
  - ./test.bash
  - ./crossbuild.bash
  - echo "rebuild with locked dependencies"
  - echo travis_fold:start:dep
  - ./dep ensure -v
  - echo travis_fold:end:dep
  - ./build.bash