2017-05-03 10:07:29 -07:00
|
|
|
language: go
|
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
|
|
|
|
|
|
|
go:
|
|
|
|
- 1.8.x
|
2017-08-29 20:15:50 -07:00
|
|
|
- 1.9.x
|
2017-05-03 10:07:29 -07:00
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
2017-08-30 20:22:12 -07:00
|
|
|
- PATH=$GOROOT/bin:$GOPATH/bin:$PATH
|
2017-05-03 10:07:29 -07:00
|
|
|
matrix:
|
|
|
|
- TARGET=amd64
|
|
|
|
- TARGET=arm
|
|
|
|
- TARGET=arm64
|
|
|
|
- TARGET=ppc64le
|
|
|
|
- TARGET=s390x
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
|
|
|
|
2017-08-30 20:22:12 -07:00
|
|
|
install:
|
|
|
|
- go get github.com/onsi/ginkgo/ginkgo
|
|
|
|
|
2017-05-03 10:07:29 -07:00
|
|
|
script:
|
|
|
|
- |
|
|
|
|
if [ "${TARGET}" == "amd64" ]; then
|
2017-06-01 18:43:58 +02:00
|
|
|
GOARCH="${TARGET}" ./test.sh
|
2017-05-03 10:07:29 -07:00
|
|
|
else
|
2017-05-15 16:45:58 +02:00
|
|
|
GOARCH="${TARGET}" ./build.sh
|
2017-05-03 10:07:29 -07:00
|
|
|
fi
|
|
|
|
|
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
|
|
|
|
git:
|
|
|
|
depth: 9999999
|