We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84bed78 commit e3e9fd3Copy full SHA for e3e9fd3
.github/workflows/e2e-matrix.yml
@@ -44,16 +44,16 @@ jobs:
44
echo '::group:: install go-junit-report'
45
go install github.com/jstemmer/[email protected]
46
echo '::endgroup::'
47
-
48
echo '::group:: created required folders'
49
mkdir -p "${ARTIFACTS}"
50
51
52
echo "${GOPATH}/bin" >> "$GITHUB_PATH"
53
54
- name: Run tests
55
run: |
56
- ./hack/setup-kind.sh \
+ curl -sSfL https://raw.githubusercontent.com/tektoncd/plumbing/main/tekton/images/kind-e2e/setup-kind.sh -o setup-kind.sh
+ chmod +x setup-kind.sh
+ ./setup-kind.sh \
57
--registry-url $(echo ${KO_DOCKER_REPO} | cut -d'/' -f 1) \
58
--cluster-suffix c${{ github.run_id }}.local \
59
--nodes 3 \
hack/setup-kind.sh
0 commit comments