Skip to content
This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Commit f825561

Browse files
committed
Update Makefile
1 parent 08b7bf4 commit f825561

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
KUBE_VERSION=1.13.2
1+
KUBE_VERSION=1.18.10
22

33
build:
44
go build -v ./...
@@ -26,17 +26,19 @@ _output/bin/protoc-gen-gofast:
2626
https://github.com/gogo/protobuf \
2727
github.com/gogo/protobuf \
2828
github.com/gogo/protobuf/protoc-gen-gofast \
29-
tags/v0.5
29+
tags/v1.3.1
3030

3131
_output/bin/gomvpkg:
3232
GO111MODULE=off ./scripts/go-install.sh \
3333
https://github.com/golang/tools \
3434
golang.org/x/tools \
3535
golang.org/x/tools/cmd/gomvpkg \
3636
fbec762f837dc349b73d1eaa820552e2ad177942
37+
# we updated this as well
3738

3839
_output/src/github.com/golang/protobuf:
39-
git clone https://github.com/golang/protobuf _output/src/github.com/golang/protobuf
40+
git clone --branch v1.3.2 https://github.com/golang/protobuf _output/src/github.com/golang/protobuf
41+
# use version in kubernetes go.mod
4042

4143
_output/bin/protoc:
4244
./scripts/get-protoc.sh
@@ -46,6 +48,7 @@ _output/kubernetes:
4648
curl -o _output/kubernetes.zip -L https://github.com/kubernetes/kubernetes/archive/v$(KUBE_VERSION).zip
4749
bsdtar -x -f _output/kubernetes.zip -C _output > /dev/null
4850
mv _output/kubernetes-$(KUBE_VERSION) _output/kubernetes
51+
# use version in kubernetes go.mod
4952

5053
.PHONY: clean
5154
clean:

0 commit comments

Comments
 (0)