From 1ddfc7bdce195cd8d6c80160e809390ce27fded6 Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Wed, 12 Mar 2025 14:31:38 -0700 Subject: [PATCH] benchmark-dockerized.sh: don't redundantly install gotestsum this is handled centrally by make test which is called by make test-integration which this script calls only make test's implementation actually calls gotestsum, and it also handles installing if needed --- hack/jenkins/benchmark-dockerized.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/hack/jenkins/benchmark-dockerized.sh b/hack/jenkins/benchmark-dockerized.sh index 2adda151df3..a01dee72279 100755 --- a/hack/jenkins/benchmark-dockerized.sh +++ b/hack/jenkins/benchmark-dockerized.sh @@ -48,7 +48,6 @@ if [ -n "${KUBE_HACK_TOOLS_GOTOOLCHAIN:-}" ]; then hack_tools_gotoolchain="${KUBE_HACK_TOOLS_GOTOOLCHAIN}"; fi GOTOOLCHAIN="${hack_tools_gotoolchain}" go -C "${KUBE_ROOT}/hack/tools" install github.com/cespare/prettybench -GOTOOLCHAIN="${hack_tools_gotoolchain}" go -C "${KUBE_ROOT}/hack/tools" install gotest.tools/gotestsum # Disable the Go race detector. export KUBE_RACE=" "