libgocryptfs/.travis.yml

33 lines
508 B
YAML
Raw Normal View History

2015-10-11 23:30:21 +02:00
language: go
git:
depth: 100
# Build with the lastest versions of Go 1.4, 1.5, 1.6, 1.7
# See https://golang.org/dl/
2015-10-11 23:30:21 +02:00
go:
- 1.5.4
- 1.6.4
- 1.7.5
- 1.8.1
2015-10-11 23:30:21 +02:00
install:
- go get .
script:
- openssl version
- go build
- ./build-without-openssl.bash
2015-12-20 17:14:48 +01:00
- ./build.bash
- ./gocryptfs -speed
- ./test.bash
2016-10-04 22:06:05 +02:00
# 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