diff options
author | mattn <mattn.jp@gmail.com> | 2016-11-08 16:47:13 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-08 16:47:13 +0900 |
commit | 14e5ed17730620eb192dabe78bdf1e4d4d1e6504 (patch) | |
tree | 9eb807da339ebcb203b04feb77904878c90e8bdc | |
parent | revert Multiple Result Set (diff) | |
parent | Test different build configurations on Travis. (diff) | |
download | golite-14e5ed17730620eb192dabe78bdf1e4d4d1e6504.tar.gz golite-14e5ed17730620eb192dabe78bdf1e4d4d1e6504.tar.xz |
Merge pull request #353 from fancycode/travis_tags
Test different build configurations on Travis.
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index f9798ae..a368435 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,11 @@ language: go sudo: required dist: trusty +env: + - GOTAGS= + - GOTAGS=libsqlite3 + - GOTAGS=trace + - GOTAGS=libsqlite3 trace go: - 1.5 - 1.6 @@ -10,4 +15,4 @@ before_install: - go get golang.org/x/tools/cmd/cover script: - $HOME/gopath/bin/goveralls -repotoken 3qJVUE0iQwqnCbmNcDsjYu1nh4J4KIFXx - - go test -race -v . -tags "libsqlite3" + - go test -race -v . -tags "$GOTAGS" |