storj/.travis.yml

88 lines
2.4 KiB
YAML

language: go
go: 1.11.x
go_import_path: "storj.io/storj"
git:
depth: 1
cache:
directories:
- /home/travis/cache
before_script:
# Add an IPv6 config - see the corresponding Travis issue
# https://github.com/travis-ci/travis-ci/issues/8361
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
sudo sh -c 'echo 0 > /proc/sys/net/ipv6/conf/all/disable_ipv6';
sudo sh -c 'echo "\n::1 localhost\n" >> /etc/hosts';
psql -c 'create database teststorj' -U postgres;
fi;
before_install:
- source scripts/setup-gopath.sh
matrix:
allow_failures:
- os: windows # allow failures on windows because it's slow
include:
### tests ###
- env:
- MODE=tests
- STORJ_POSTGRES_TEST=postgres://postgres@localhost/teststorj?sslmode=disable
services:
- redis
- postgresql
install:
- pushd ~
- GOBIN=${GOPATH}/bin GOPATH=~/gotools go get github.com/mattn/goveralls
- GOBIN=${GOPATH}/bin GOPATH=~/gotools go get github.com/mfridman/tparse
- popd
- go install -race ./...
script:
- go run scripts/use-ports.go -from 1024 -to 10000 &
- go test -race -cover -coverprofile=.coverprofile -json ./... | tparse -all
- goveralls -coverprofile=.coverprofile -service=travis-ci
- rm .coverprofile
- go run scripts/check-clean-directory.go
### run linters ###
- env: MODE=lint
install:
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b ${GOPATH}/bin v1.12.2
script:
- go run ./scripts/check-copyright.go
- golangci-lint run
- gospace istidy
### captplanet tests ###
- env: MODE=integration
services:
- redis
install:
- source scripts/install-awscli.sh
- go install storj.io/storj/cmd/captplanet
script:
- make test-captplanet
### windows tests ###
- env: MODE=windows-tests
os: windows
services:
- redis
cache:
directories:
- "%HOME%/cache"
before_install:
- powershell -executionpolicy bypass -File scripts/setup-gopath.ps1
install:
- go get github.com/mattn/goveralls
- go install -race ./...
script:
- go test -race -cover -coverprofile=.coverprofile ./...
- goveralls -coverprofile=.coverprofile -service=travis-ci
fast_finish: true
addons:
postgresql: "9.5"