From 2b2ca4c472915caf3919d64ce34d5db315de9406 Mon Sep 17 00:00:00 2001 From: Lantao Liu Date: Fri, 14 Dec 2018 13:49:16 -0800 Subject: [PATCH] Temporary fix for golang regression #29241. Signed-off-by: Lantao Liu --- hack/test-cri.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hack/test-cri.sh b/hack/test-cri.sh index 94f5853f5..b49749556 100755 --- a/hack/test-cri.sh +++ b/hack/test-cri.sh @@ -46,7 +46,8 @@ fi # Install critest if [ ! -x "$(command -v ${CRITEST})" ]; then - go get -d ${CRITOOL_PKG}/... + # FIXME temporarily disabled due to a regression in Go 1.10.6 / 1.11.3 (https://github.com/golang/go/issues/29241) + go get -d ${CRITOOL_PKG} || true cd ${GOPATH}/src/${CRITOOL_PKG} git fetch --all git checkout ${CRITOOL_VERSION}