40 lines
996 B
YAML
40 lines
996 B
YAML
sudo: required
|
|
|
|
addons:
|
|
hosts:
|
|
- quic.clemente.io
|
|
|
|
language: go
|
|
|
|
services:
|
|
- docker
|
|
|
|
go:
|
|
- 1.7.5
|
|
- 1.8
|
|
|
|
# first part of the GOARCH workaround
|
|
# setting the GOARCH directly doesn't work, since the value will be overwritten later
|
|
# so set it to a temporary environment variable first
|
|
env:
|
|
- TRAVIS_GOARCH=amd64 TESTMODE=unit
|
|
- TRAVIS_GOARCH=amd64 TESTMODE=integration
|
|
- TRAVIS_GOARCH=386 TESTMODE=unit
|
|
- TRAVIS_GOARCH=386 TESTMODE=integration
|
|
|
|
# second part of the GOARCH workaround
|
|
# now actually set the GOARCH env variable to the value of the temporary variable set earlier
|
|
before_install:
|
|
- go get golang.org/x/tools/cmd/cover
|
|
- go get github.com/onsi/ginkgo/ginkgo
|
|
- go get github.com/onsi/gomega
|
|
- export GOARCH=$TRAVIS_GOARCH
|
|
- go env # for debugging
|
|
|
|
script:
|
|
# Retry building up to 3 times as documented here: https://docs.travis-ci.com/user/common-build-problems/#travis_retry
|
|
- travis_retry .travis/script.sh
|
|
|
|
after_success:
|
|
- .travis/after_success.sh
|