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.

.travis.yml 752B

12345678910111213141516171819202122232425262728293031323334353637
  1. language: go
  2. sudo: false
  3. install:
  4. - go get -t github.com/RoaringBitmap/roaring
  5. - go get -t golang.org/x/tools/cmd/cover
  6. - go get -t github.com/mattn/goveralls
  7. - go get -t github.com/mschoch/smat
  8. notifications:
  9. email: false
  10. go:
  11. - "1.7.x"
  12. - "1.8.x"
  13. - "1.9.x"
  14. - "1.10.x"
  15. - "1.11.x"
  16. - "1.12.x"
  17. - "1.13.x"
  18. - tip
  19. # whitelist
  20. branches:
  21. only:
  22. - master
  23. script:
  24. - goveralls -v -service travis-ci -ignore arraycontainer_gen.go,bitmapcontainer_gen.go,rle16_gen.go,rle_gen.go,roaringarray_gen.go,rle.go || go test
  25. - go test -race -run TestConcurrent*
  26. - go build -tags appengine
  27. - go test -tags appengine
  28. - GOARCH=arm64 go build
  29. - GOARCH=386 go build
  30. - GOARCH=386 go test
  31. - GOARCH=arm go build
  32. - GOARCH=arm64 go build
  33. matrix:
  34. allow_failures:
  35. - go: tip