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.
20 lines
333 B
20 lines
333 B
os: Visual Studio 2015
|
|
|
|
platform: x64
|
|
|
|
clone_folder: c:\gopath\src\github.com\klauspost\reedsolomon
|
|
|
|
# environment variables
|
|
environment:
|
|
GOPATH: c:\gopath
|
|
|
|
install:
|
|
- echo %PATH%
|
|
- echo %GOPATH%
|
|
- go version
|
|
- go env
|
|
- go get -d ./...
|
|
|
|
build_script:
|
|
- go test -v -cpu=2 ./...
|
|
- go test -cpu=1,2,4 -short -race ./...
|
|
|