Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

Update download URL of uptest #255

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
5 changes: 3 additions & 2 deletions makelib/k8s_tools.mk
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ KUTTL_VERSION ?= 0.12.1
KUTTL := $(TOOLS_HOST_DIR)/kuttl-$(KUTTL_VERSION)

# the version of uptest to use
UPTEST_VERSION ?= v0.1.0
UPTEST_VERSION ?= v0.12.0
UPTEST_CHANNEL ?= stable
UPTEST := $(TOOLS_HOST_DIR)/uptest-$(UPTEST_VERSION)

# the version of yq to use
Expand Down Expand Up @@ -181,7 +182,7 @@ $(KUTTL):
$(UPTEST):
@$(INFO) installing uptest $(UPTEST)
@mkdir -p $(TOOLS_HOST_DIR)
@curl -fsSLo $(UPTEST) https://github.com/upbound/uptest/releases/download/$(UPTEST_VERSION)/uptest_$(SAFEHOSTPLATFORM) || $(FAIL)
@curl -fsSLo $(UPTEST) https://s3.us-west-2.amazonaws.com/crossplane.uptest.releases/$(UPTEST_CHANNEL)/$(UPTEST_VERSION)/bin/$(SAFEHOST_PLATFORM)/uptest || $(FAIL)
@chmod +x $(UPTEST)
@$(OK) installing uptest $(UPTEST)

Expand Down