diff options
author | David Anderson <[email protected]> | 2017-07-05 17:03:07 -0700 |
---|---|---|
committer | David Anderson <[email protected]> | 2017-07-05 17:03:07 -0700 |
commit | aa12504e4e35953c3281989f871e1293eb2114fe (patch) | |
tree | 87c0f6e084bbded5ce66b668cb79f0d4798e41d2 | |
parent | f6af481b22698c9c27dd2f6af1881ea995c72046 (diff) |
Another attempt to fix Travis.
Drop Go 1.7 from the build matrix, tcpproxy uses a 1.8 feature of crypto/tls.
Make `go get` fetch the right test packages for cmd/tlsrouter.
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index e884a9d..ffc2477 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: go go: -- 1.7 - 1.8 - tip os: @@ -9,7 +8,7 @@ install: - go get github.com/golang/lint/golint before_script: script: -- go get -t . +- go get -t ./... - go build ./... - go test ./... - go vet ./... |