3 Commits

Author SHA1 Message Date
asellappen 18533face0 Add poweron architecture ppc64le to travis build (#22) 2020-11-04 21:38:30 +02:00
Sergio Andrés Virviescas Santana 63d343e1f9 Update CI to use latest versions of Go (#21)
Co-authored-by: Sergio Andres Virviescas Santana <sergio@mbp-savsgio.local>
2020-10-17 12:12:25 +03:00
Aliaksandr Valialkin cdfbe93774 Added go1.11 module support 2018-09-05 21:22:47 +03:00
2 changed files with 28 additions and 9 deletions
+25 -9
View File
@@ -1,15 +1,31 @@
language: go
arch:
- amd64
- ppc64le
os:
- linux
- osx
- windows
go:
- 1.6
- 1.15.x
- 1.14.x
- 1.13.x
- 1.12.x
- tip
script:
# build test for supported platforms
- GOOS=linux go build
- GOOS=darwin go build
- GOOS=freebsd go build
- GOOS=windows go build
- GOARCH=386 go build
- go test -v -cover -race ./...
# run tests on a standard platform
- go test -v ./...
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
+3
View File
@@ -0,0 +1,3 @@
module github.com/valyala/bytebufferpool
go 1.12