Skip to content

Commit

Permalink
Updates hub version to 1.7.1 and fixes variables
Browse files Browse the repository at this point in the history
Signed-off-by: Shivam Mukhade <[email protected]>
  • Loading branch information
Shivam Mukhade committed Mar 21, 2022
1 parent 07cd3a7 commit 65adc35
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ TEKTON_TRIGGERS_VERSION ?= latest
TEKTON_DASHBOARD_VERSION ?= latest
TEKTON_RESULTS_VERSION ?= v0.4.0 # latest returns an older version hence hard coding to v0.3.1 for now (tektoncd/results#138)
PAC_VERSION ?= 0.5.4
TEKTON_HUB_VERSION ?= v1.7.0 # latest doesn't returns any version hence hard coding to v1.7.0 for now
TEKTON_HUB_VERSION ?= v1.7.1 # latest doesn't returns any version hence hard coding to v1.7.1 for now
TEKTON_CHAINS_VERSION ?= latest

$(BIN)/ko: PACKAGE=github.com/google/ko
Expand Down
1 change: 1 addition & 0 deletions test/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ export TEKTON_RESULTS_VERSION=v0.4.0
export TEKTON_DASHBOARD_VERSION=latest
export TEKTON_CHAINS_VERSION=latest
export PAC_VERSION=0.5.2
export TEKTON_HUB_VERSION=v1.7.1
11 changes: 6 additions & 5 deletions test/e2e-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,13 @@ source $(dirname $0)/config.sh
function install_operator_resources() {

echo :Payload Targets:
echo Pipelines: ${PIPELINES_VERSION}
echo Triggers: ${TRIGGERS_VERSION}
echo Chains: ${CHAINS_VERSION}
echo Pipelines: ${TEKTON_PIPELINE_VERSION}
echo Triggers: ${TEKTON_TRIGGERS_VERSION}
echo Chains: ${TEKTON_CHAINS_VERSION}
echo Hub: ${TEKTON_HUB_VERSION}
if [[ ${TARGET} != "openshift" ]]; then
echo Results: ${RESULTS_VERSION}
echo Dashboard: ${DASHBOARD_VERSION}
echo Results: ${TEKTON_RESULTS_VERSION}
echo Dashboard: ${TEKTON_DASHBOARD_VERSION}
fi
echo '------------------------------'

Expand Down
2 changes: 1 addition & 1 deletion test/resources/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func DeleteAndVerifyDeployments(t *testing.T, clients *utils.Clients, namespace,
})

if waitErr != nil {
t.Fatalf("The deployment %s/%s failed to reach the desired state: %v", deployment.Namespace, deployment.Name, err)
t.Fatalf("The deployment %s/%s failed to reach the desired state: %v", deployment.Namespace, deployment.Name, waitErr)
}
}

Expand Down

0 comments on commit 65adc35

Please sign in to comment.