Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Update gotestsum from v1.10.1 to v1.11.0 #17260

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hack/jenkins/common.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ gsutil.cmd -m cp -r gs://minikube-builds/$env:MINIKUBE_LOCATION/installers/check

# Download gopogh and gotestsum
go install github.com/medyagh/gopogh/cmd/[email protected]
go install gotest.tools/gotestsum@v1.10.1
go install gotest.tools/gotestsum@v1.11.0
# temporary: remove the old install of gopogh & gotestsum as it's taking priority over our current install, preventing updating
if (Test-Path "C:\Go") {
Remove-Item "C:\Go" -Recurse -Force
Expand Down
2 changes: 1 addition & 1 deletion hack/jenkins/installers/check_install_gotestsum.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set -eux -o pipefail

function install_gotestsum() {
rm -f $(which gotestsum)
GOBIN="$GOROOT/bin" go install gotest.tools/gotestsum@v1.10.1
GOBIN="$GOROOT/bin" go install gotest.tools/gotestsum@v1.11.0
}

which gotestsum || install_gotestsum