Skip to content

Commit 3e99123

Browse files
committed
*: use go.mod
Stop using `dep` and use go.mod instead. This is being done in order to update the cockroach-go dependency to pick upa bugfix.
1 parent 02b1a7f commit 3e99123

File tree

157 files changed

+28
-31718
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+28
-31718
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN apt-get install -y postgresql postgresql-contrib libpq-dev git build-essenti
2020
RUN apt-get install gradle -y
2121

2222
# installations for golang
23-
RUN curl https://storage.googleapis.com/golang/go1.9.1.linux-amd64.tar.gz -o golang.tar.gz \
23+
RUN curl https://storage.googleapis.com/golang/go1.14.6.linux-amd64.tar.gz -o golang.tar.gz \
2424
&& tar -C /usr/local -xzf golang.tar.gz \
2525
&& rm golang.tar.gz
2626

Gopkg.lock

Lines changed: 0 additions & 71 deletions
This file was deleted.

Gopkg.toml

Lines changed: 0 additions & 79 deletions
This file was deleted.

docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
set -euo pipefail
2323

24-
image=cockroachdb/example-orms-builder:20200610-2048
24+
image=cockroachdb/example-orms-builder:20200729-1723
2525

2626
gopath=$(go env GOPATH)
2727
gopath0=${gopath%%:*}

go.mod

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module github.com/cockroachdb/examples-orms
2+
3+
go 1.14
4+
5+
require (
6+
github.com/cockroachdb/cockroach-go/v2 v2.0.5
7+
github.com/denisenkom/go-mssqldb v0.0.0-20200620013148-b91950f658ec // indirect
8+
github.com/go-sql-driver/mysql v1.5.0 // indirect
9+
github.com/jinzhu/gorm v1.9.12
10+
github.com/jinzhu/now v1.1.1 // indirect
11+
github.com/julienschmidt/httprouter v1.1.0
12+
github.com/lib/pq v1.4.0
13+
github.com/pkg/errors v0.9.1
14+
)

0 commit comments

Comments
 (0)