-
-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #478 from rethinkdb/develop
6.1.0 release
- Loading branch information
Showing
17 changed files
with
281 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
language: go | ||
|
||
go: | ||
- 1.9.x | ||
- 1.10.x | ||
- 1.11.x | ||
- 1.12.x | ||
- 1.13.x | ||
- 1.14.x | ||
|
||
cache: apt | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
test: | ||
test -d ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6 && mv ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6 ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6.bak; true | ||
cp -R . ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6 | ||
go test -coverprofile=cover.out -race gopkg.in/rethinkdb/rethinkdb-go.v6; true | ||
go tool cover -html=cover.out -o cover.html; true | ||
rm -f cover.out; true | ||
rm -rf ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6 | ||
test -d ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6.bak && mv ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6.bak ${GOPATH}/src/gopkg.in/rethinkdb/rethinkdb-go.v6; true | ||
go test -coverprofile=cover.out -race gopkg.in/rethinkdb/rethinkdb-go.v6 gopkg.in/rethinkdb/rethinkdb-go.v6/encoding gopkg.in/rethinkdb/rethinkdb-go.v6/types | ||
go tool cover -html=cover.out -o cover.html | ||
rm -f cover.out | ||
|
||
integration: | ||
go test -race gopkg.in/rethinkdb/rethinkdb-go.v6/internal/integration/... | ||
|
||
benchpool: | ||
go test -v -cpu 1,2,4,8,16,24,32,64,128,256 -bench=BenchmarkConnectionPool -run ^$ ./internal/integration/tests/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,28 @@ | ||
module gopkg.in/rethinkdb/rethinkdb-go.v6 | ||
|
||
require ( | ||
github.com/cenkalti/backoff v2.0.0+incompatible | ||
github.com/bitly/go-hostpool v0.1.0 // indirect | ||
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect | ||
github.com/cenkalti/backoff v2.2.1+incompatible | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/protobuf v1.2.0 | ||
github.com/golang/protobuf v1.3.4 | ||
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/opentracing/opentracing-go v1.0.2 | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect | ||
github.com/onsi/ginkgo v1.12.0 // indirect | ||
github.com/onsi/gomega v1.9.0 // indirect | ||
github.com/opentracing/opentracing-go v1.1.0 | ||
github.com/sirupsen/logrus v1.0.6 | ||
github.com/stretchr/objx v0.1.1 // indirect | ||
github.com/stretchr/testify v1.2.2 | ||
golang.org/x/crypto v0.0.0-20180820150726-614d502a4dac | ||
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d | ||
golang.org/x/sys v0.0.0-20180828065106-d99a578cf41b // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 | ||
gopkg.in/fatih/pool.v2 v2.0.0 | ||
github.com/stretchr/objx v0.2.0 // indirect | ||
github.com/stretchr/testify v1.5.1 | ||
golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073 | ||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 | ||
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect | ||
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect | ||
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f | ||
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect | ||
gopkg.in/yaml.v2 v2.2.8 // indirect | ||
) | ||
|
||
go 1.13 | ||
go 1.14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.