|
@@ -14,7 +14,10 @@ script:
|
|
|
- go test -tags "alltests codecgen" -run Suite -coverprofile coverage.codecgen.txt github.com/ugorji/go/codec
|
|
- go test -tags "alltests codecgen" -run Suite -coverprofile coverage.codecgen.txt github.com/ugorji/go/codec
|
|
|
- GOARCH=386 go test -tags "alltests" -run Suite -coverprofile coverage.386.txt github.com/ugorji/go/codec
|
|
- GOARCH=386 go test -tags "alltests" -run Suite -coverprofile coverage.386.txt github.com/ugorji/go/codec
|
|
|
- |
|
|
- |
|
|
|
- [[ "${TRAVIS_GO_VERSION}" == "master" ]] && echo "XXXX RACE" && go test "-race" -tags "alltests" -run Suite -coverprofile coverage.race.txt github.com/ugorji/go/codec
|
|
|
|
|
|
|
+ # we use if block, so that we still return with success
|
|
|
|
|
+ if [[ "${TRAVIS_GO_VERSION}" == "master" ]]; then
|
|
|
|
|
+ echo "XXXX RACE" && go test "-race" -tags "alltests" -run Suite -coverprofile coverage.race.txt github.com/ugorji/go/codec;
|
|
|
|
|
+ fi
|
|
|
|
|
|
|
|
after_success:
|
|
after_success:
|
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
- bash <(curl -s https://codecov.io/bash)
|