go-sqlite3/.travis.yml

36 lines
930 B
YAML
Raw Normal View History

language: go
os:
- linux
- osx
addons:
apt:
update: true
2013-08-29 05:03:00 +04:00
go:
- 1.9.x
- 1.10.x
2018-10-09 13:54:41 +03:00
- 1.11.x
2019-10-07 17:46:06 +03:00
- 1.12.x
- 1.13.x
- master
2013-06-11 15:08:24 +04:00
before_install:
- |
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update
fi
2019-02-10 20:04:48 +03:00
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
2013-06-11 15:08:24 +04:00
script:
- $HOME/gopath/bin/goveralls -repotoken 3qJVUE0iQwqnCbmNcDsjYu1nh4J4KIFXx -parallel
2019-02-10 20:04:48 +03:00
- go test -race -v . -tags ""
- go test -race -v . -tags "libsqlite3"
2019-08-22 00:04:45 +03:00
- 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"
- go test -race -v . -tags "sqlite_vacuum_full"
notifications:
webhooks: https://coveralls.io/webhook?repo_token=3qJVUE0iQwqnCbmNcDsjYu1nh4J4KIFXx