mirror of
https://github.com/valyala/bytebufferpool.git
synced 2026-06-13 13:16:35 +03:00
32 lines
426 B
YAML
32 lines
426 B
YAML
language: go
|
|
arch:
|
|
- amd64
|
|
- ppc64le
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
|
|
go:
|
|
- 1.15.x
|
|
- 1.14.x
|
|
- 1.13.x
|
|
- 1.12.x
|
|
- tip
|
|
|
|
script:
|
|
- go test -v -cover -race ./...
|
|
|
|
jobs:
|
|
allow_failures:
|
|
- go: tip
|
|
|
|
include:
|
|
- stage: cross compilation
|
|
script:
|
|
- GOOS=linux go build
|
|
- GOOS=darwin go build
|
|
- GOOS=freebsd go build
|
|
- GOOS=windows go build
|
|
- GOARCH=386 go build
|