reedsolomon-go/.travis.yml

34 lines
530 B
YAML
Raw Normal View History

2015-06-19 18:24:30 +03:00
language: go
sudo: false
os:
- linux
- osx
2015-06-19 18:24:30 +03:00
go:
2017-08-26 12:54:10 +03:00
- 1.9.x
- 1.10.x
- 1.11.x
- 1.12.x
- master
2015-06-25 14:18:12 +03:00
2015-11-03 14:13:11 +03:00
install:
2015-11-03 14:17:06 +03:00
- go get ./...
2015-11-03 14:13:11 +03:00
2015-06-25 14:18:12 +03:00
script:
2015-11-03 14:13:11 +03:00
- go vet ./...
2015-06-25 14:18:12 +03:00
- go test -v -cpu=1,2,4 .
- go test -v -cpu=1,2,4 -short -race .
- go test -tags=noasm -v -cpu=1,2,4 -short -race .
2015-06-25 14:18:12 +03:00
- go build examples/simple-decoder.go
- go build examples/simple-encoder.go
2015-10-27 15:57:35 +03:00
- go build examples/stream-decoder.go
- go build examples/stream-encoder.go
- diff <(gofmt -d .) <("")
matrix:
allow_failures:
- go: 'master'
fast_finish: true