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 700B

1234567891011121314151617181920212223242526272829303132
  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.13.x"
  12. - "1.14.x"
  13. - tip
  14. # whitelist
  15. branches:
  16. only:
  17. - master
  18. script:
  19. - 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
  20. - go test -race -run TestConcurrent*
  21. - go build -tags appengine
  22. - go test -tags appengine
  23. - GOARCH=arm64 go build
  24. - GOARCH=386 go build
  25. - GOARCH=386 go test
  26. - GOARCH=arm go build
  27. - GOARCH=arm64 go build
  28. matrix:
  29. allow_failures:
  30. - go: tip