.travis.yml 237 B

12345678910111213141516171819
  1. language: go
  2. env:
  3. - GO111MODULE=off
  4. go:
  5. - 1.13.x
  6. - 1.14.x
  7. matrix:
  8. fast_finish: true
  9. sudo: false
  10. script:
  11. - go test -v -cpu=2
  12. - go test -v -cpu=2 -race
  13. - go test -v -cpu=2 -tags noasm
  14. - go test -v -cpu=2 -race -tags noasm