libgocryptfs/.travis.yml

42 lines
739 B
YAML
Raw Normal View History

2015-10-11 23:30:21 +02:00
language: go
git:
depth: 100
2017-09-02 20:35:07 +02:00
# Build with the lastest versions of Go 1.5 and later
# See https://golang.org/dl/
2015-10-11 23:30:21 +02:00
go:
- 1.5.x
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- stable
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
- ./crossbuild.bash
- echo "rebuild with locked dependencies"
- wget https://github.com/golang/dep/releases/download/v0.3.2/dep-linux-amd64 -O dep
- chmod +x dep
- ./dep ensure
- ./build.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