You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+1-3Lines changed: 1 addition & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -107,9 +107,7 @@ all: binaries
107
107
108
108
check: proto-fmt ## run all linters
109
109
@echo "$(WHALE)$@"
110
-
# FIXME temporarily disabled due to a regression in Go 1.10.6 / 1.11.3 (https://github.com/golang/go/issues/29241)
111
-
# gometalinter --config .gometalinter.json ./...
112
-
gometalinter --config .gometalinter.json $(go list ./... | grep -v /vendor/)
110
+
gometalinter --config .gometalinter.json ./...
113
111
114
112
ci: check binaries checkprotos coverage coverage-integration ## to be used by the CI
# FIXME temporarily disabled due to a regression in Go 1.10.6 / 1.11.3 (https://github.com/golang/go/issues/29241)
29
-
# go get -d github.com/containernetworking/plugins/...
30
-
go get -d github.com/containernetworking/plugins ||true
31
-
PACKAGES=$(go list github.com/containernetworking/plugins/... | grep -v /vendor/)
32
-
go get -d ${PACKAGES}
33
-
28
+
go get -d github.com/containernetworking/plugins/...
Copy file name to clipboardExpand all lines: script/setup/install-critools
+1-6Lines changed: 1 addition & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -22,12 +22,7 @@ set -eu -o pipefail
22
22
23
23
go get -u github.com/onsi/ginkgo/ginkgo
24
24
CRITEST_COMMIT=v1.0.0-beta.1
25
-
26
-
# FIXME temporarily disabled due to a regression in Go 1.10.6 / 1.11.3 (https://github.com/golang/go/issues/29241)
27
-
# go get -d github.com/kubernetes-incubator/cri-tools/...
28
-
go get -d github.com/kubernetes-incubator/cri-tools ||true
29
-
PACKAGES=$(go list github.com/kubernetes-incubator/cri-tools/... | grep -v /vendor/)
30
-
go get -d ${PACKAGES}
25
+
go get -d github.com/kubernetes-incubator/cri-tools/...
0 commit comments