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

123456789101112131415161718192021222324252627282930313233
  1. language: go
  2. os:
  3. - linux
  4. - osx
  5. addons:
  6. apt:
  7. update: true
  8. go:
  9. - 1.9.x
  10. - 1.10.x
  11. - 1.11.x
  12. - 1.12.x
  13. - 1.13.x
  14. - master
  15. before_install:
  16. - |
  17. if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
  18. brew update
  19. fi
  20. - go get github.com/smartystreets/goconvey
  21. - go get github.com/mattn/goveralls
  22. - go get golang.org/x/tools/cmd/cover
  23. script:
  24. - $HOME/gopath/bin/goveralls -repotoken 3qJVUE0iQwqnCbmNcDsjYu1nh4J4KIFXx
  25. - go test -race -v . -tags ""
  26. - go test -race -v . -tags "libsqlite3"
  27. - go test -race -v . -tags "sqlite_allow_uri_authority sqlite_app_armor sqlite_foreign_keys sqlite_fts5 sqlite_icu sqlite_introspect sqlite_json sqlite_preupdate_hook sqlite_secure_delete sqlite_see sqlite_stat4 sqlite_trace sqlite_userauth sqlite_vacuum_incr sqlite_vtable sqlite_unlock_notify"
  28. - go test -race -v . -tags "sqlite_vacuum_full"