2017-06-01 18:51:46 +02:00

35 lines
423 B
YAML

language: go
sudo: required
dist: trusty
go:
- 1.7.x
- 1.8.x
env:
global:
- PATH=$GOROOT/bin:$PATH
matrix:
- TARGET=amd64
- TARGET=arm
- TARGET=arm64
- TARGET=ppc64le
- TARGET=s390x
matrix:
fast_finish: true
script:
- |
if [ "${TARGET}" == "amd64" ]; then
GOARCH="${TARGET}" ./test.sh
else
GOARCH="${TARGET}" ./build.sh
fi
notifications:
email: false
git:
depth: 9999999