a41f938cec
As we have seen, dependencies version can prevent the build. We should user lock versions on dependencies that we know work: * Packages are vendored * Add Godep support * Added addtional install step in readme * Fix travis build error
18 lignes
360 o
YAML
18 lignes
360 o
YAML
language: go
|
|
sudo: required
|
|
dist: trusty
|
|
env:
|
|
- GOTAGS=
|
|
- GOTAGS=libsqlite3
|
|
- GOTAGS=trace
|
|
- GOTAGS=vtable
|
|
go:
|
|
- 1.7
|
|
- 1.8
|
|
- tip
|
|
before_install:
|
|
- go get github.com/mattn/goveralls
|
|
- go get golang.org/x/tools/cmd/cover
|
|
script:
|
|
- $HOME/gopath/bin/goveralls -repotoken 3qJVUE0iQwqnCbmNcDsjYu1nh4J4KIFXx
|
|
- go test -race -v . -tags "$GOTAGS"
|