You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
283 B
26 lines
283 B
4 years ago
|
sudo: required
|
||
|
dist: trusty
|
||
|
language: go
|
||
|
|
||
|
os:
|
||
|
- linux
|
||
|
|
||
|
go:
|
||
|
- tip
|
||
|
- 1.12.x
|
||
|
|
||
|
env:
|
||
|
- ARCH=x86_64
|
||
|
- ARCH=i686
|
||
|
|
||
|
matrix:
|
||
|
fast_finish: true
|
||
|
allow_failures:
|
||
|
- go: tip
|
||
|
|
||
|
script:
|
||
|
- diff -au <(gofmt -d .) <(printf "")
|
||
|
- go test -race -v ./...
|
||
|
- go vet -asmdecl .
|
||
|
- ./test-architectures.sh
|