go-sqlcipher/.travis.yml

31 lines
781 B
YAML
Raw Permalink Normal View History

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:
- 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
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
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 ""
- 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"
- go test -race -v . -tags "sqlite_vacuum_full"