2012-10-29 09:24:18 +04:00
|
|
|
language: go
|
2016-04-22 18:36:29 +03:00
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
2018-05-23 18:57:00 +03:00
|
|
|
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- libssl-dev
|
|
|
|
|
2013-08-29 05:03:00 +04:00
|
|
|
go:
|
2017-10-22 14:57:02 +03:00
|
|
|
- 1.9.x
|
2018-05-23 20:20:57 +03:00
|
|
|
- 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
|
2017-10-22 14:57:02 +03:00
|
|
|
- master
|
2018-05-23 20:20:57 +03:00
|
|
|
|
2013-06-11 15:08:24 +04:00
|
|
|
before_install:
|
2018-05-23 20:20:57 +03:00
|
|
|
- |
|
2018-11-02 07:03:02 +03:00
|
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
2018-05-23 20:20:57 +03:00
|
|
|
brew update
|
|
|
|
fi
|
2018-05-23 18:57:00 +03:00
|
|
|
- go get github.com/mattn/goveralls
|
2014-11-14 02:23:32 +03:00
|
|
|
- go get golang.org/x/tools/cmd/cover
|
2018-05-23 20:20:57 +03:00
|
|
|
|
2013-06-11 15:08:24 +04:00
|
|
|
script:
|
2018-05-23 18:57:00 +03:00
|
|
|
- $HOME/gopath/bin/goveralls -repotoken PfqH9iFyzW3daUxflzllSougjTxvFwQZE
|
2019-02-10 20:04:48 +03:00
|
|
|
- go test -race -v . -tags ""
|
2020-05-04 13:33:26 +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_vacuum_incr sqlite_vtable sqlite_unlock_notify"
|
2019-02-24 21:39:29 +03:00
|
|
|
- go test -race -v . -tags "sqlite_vacuum_full"
|