Skip to content

Commit

Permalink
Merge 7fd9932 into ed4c4a2
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Aug 15, 2019
2 parents ed4c4a2 + 7fd9932 commit 11f923e
Show file tree
Hide file tree
Showing 3 changed files with 231 additions and 24 deletions.
32 changes: 22 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,34 @@
language: go

sudo: true

go:
- 1.11.4
- 1.11.x
- 1.12.x
- 1.x

cache:
directories:
- $GOPATH/pkg/mod

env:
- GO111MODULE=on
global:
- GO111MODULE=on
- GOPROXY=https://proxy.golang.org

install: true
install:
- go mod tidy
- git diff --exit-code go.mod
- git diff --exit-code go.sum
- go mod download

sudo: true
go_import_path: github.com/abronan/valkeyrie

before_install:
# Symlink below is needed for Travis CI to work correctly on personal forks of valkeyrie
- ln -s $HOME/gopath/src/github.com/${TRAVIS_REPO_SLUG///valkeyrie/} $HOME/gopath/src/github.com/abronan
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
- go get golang.org/x/lint/golint
- go get github.com/GeertJohan/fgt
- GO111MODULE=off go get golang.org/x/tools/cmd/cover
- GO111MODULE=off go get github.com/mattn/goveralls
- GO111MODULE=off go get golang.org/x/lint/golint
- GO111MODULE=off go get github.com/GeertJohan/fgt
# ca-certificates is needed for wget to work properly
- sudo apt-get install ca-certificates

Expand Down
35 changes: 31 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,23 +1,50 @@
module github.com/abronan/valkeyrie

go 1.11

require (
github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878 // indirect
github.com/aws/aws-sdk-go v1.16.23
github.com/coreos/bbolt v1.3.3 // indirect
github.com/coreos/etcd v3.3.13+incompatible
github.com/coreos/go-semver v0.2.0 // indirect
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/gogo/protobuf v1.2.0 // indirect
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
github.com/google/btree v1.0.0 // indirect
github.com/gorilla/websocket v1.4.0 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0 // indirect
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.9.5 // indirect
github.com/hashicorp/consul v1.4.0
github.com/hashicorp/go-cleanhttp v0.5.0 // indirect
github.com/hashicorp/go-msgpack v0.5.5 // indirect
github.com/hashicorp/go-rootcerts v1.0.0 // indirect
github.com/hashicorp/go-uuid v1.0.1 // indirect
github.com/hashicorp/memberlist v0.1.4 // indirect
github.com/hashicorp/serf v0.8.1 // indirect
github.com/jonboulle/clockwork v0.1.0 // indirect
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/onsi/ginkgo v1.8.0 // indirect
github.com/onsi/gomega v1.5.0 // indirect
github.com/prometheus/client_golang v1.1.0 // indirect
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 // indirect
github.com/samuel/go-zookeeper v0.0.0-20180130194729-c4fab1ac1bec
github.com/soheilhy/cmux v0.1.4 // indirect
github.com/stretchr/testify v1.3.0
github.com/ugorji/go v0.0.0-20171019201919-bdcc60b419d1 // indirect
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
go.etcd.io/bbolt v1.3.1-etcd.8
go.etcd.io/etcd v3.3.13+incompatible
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
google.golang.org/grpc v1.18.0 // indirect
go.uber.org/atomic v1.4.0 // indirect
go.uber.org/multierr v1.1.0 // indirect
go.uber.org/zap v1.10.0 // indirect
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 // indirect
golang.org/x/net v0.0.0-20190613194153-d28f0bde5980
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect
gopkg.in/redis.v5 v5.2.9
)

0 comments on commit 11f923e

Please sign in to comment.