libgocryptfs/.travis.yml
Jakob Unterwurzacher 4c11e8a4e5 travis: update Go versions
...to latest point releases acc. to https://golang.org/dl/
2017-11-01 19:02:34 +01:00

35 lines
535 B
YAML

language: go
git:
depth: 100
# Build with the lastest versions of Go 1.5 and later
# See https://golang.org/dl/
go:
- 1.5.4
- 1.6.4
- 1.7.6
- 1.8.5
- 1.9.2
install:
- go get .
script:
- openssl version
- go build
- ./build-without-openssl.bash
- ./build.bash
- ./gocryptfs -speed
- ./test.bash
- ./crossbuild.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