Add direct modules support (#124)

* Add direct modules support
* Add tests with various assembly disabled.
* Add Go 1.14 - remove 1.11
master
Klaus Post 2020-05-03 21:53:25 +02:00 committed by GitHub
parent d069fb1019
commit e920b5fec3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View File

@ -7,9 +7,9 @@ os:
- osx
go:
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
- master
install:
@ -19,7 +19,9 @@ script:
- go vet ./...
- 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 .
- go test -no-avx512
- go test -no-avx512 -no-avx2
- go test -tags=noasm -v -cpu=1,4 -short -race .
- go build examples/simple-decoder.go
- go build examples/simple-encoder.go
- go build examples/stream-decoder.go

5
go.mod Normal file
View File

@ -0,0 +1,5 @@
module github.com/klauspost/reedsolomon
go 1.14
require github.com/klauspost/cpuid v1.2.4