libgocryptfs/.travis.yml

46 lines
846 B
YAML
Raw Normal View History

2015-10-11 23:30:21 +02:00
language: go
# fuse on travis
sudo: required
dist: xenial
git:
depth: 300
# Build with the lastest versions of Go 1.7 and later
# See https://golang.org/dl/
2015-10-11 23:30:21 +02:00
go:
- 1.9.x
- 1.10.x
- 1.11.x
- 1.12.x
2019-10-06 21:53:50 +02:00
- 1.12.x
- stable
2015-10-11 23:30:21 +02:00
before_install:
- sudo apt-get install -qq fuse
- sudo modprobe fuse
- sudo chmod 666 /dev/fuse
- sudo chown root:$USER /etc/fuse.conf
2015-10-11 23:30:21 +02:00
install:
- go get -d -t -v ./...
- wget https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -O dep
- chmod +x dep
2015-10-11 23:30:21 +02:00
script:
- openssl version
2018-08-26 12:39:51 +02:00
- df -Th / /tmp
- go build
- ./build-without-openssl.bash
2015-12-20 17:14:48 +01:00
- ./build.bash
- ./gocryptfs -speed
- ./test.bash
2019-05-01 18:31:54 +02:00
- make root_test
- ./crossbuild.bash
- echo "rebuild with locked dependencies"
- echo travis_fold:start:dep
- ./dep ensure -v
- echo travis_fold:end:dep
- ./build.bash