Skip to content
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
5 changes: 3 additions & 2 deletions .github/workflows/reusable-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
GO111MODULE: 'on'
GOFLAGS: -ldflags=-s -ldflags=-w
KO_DOCKER_REPO: registry.local:5000/knative
# registry.local:5000 is a plain-HTTP KinD registry; tell ko to skip TLS
# so that both image pushes and SBOM writes (ko >=v0.19) use plain HTTP.
KO_FLAGS: --insecure-registry
KOCACHE: ~/ko
SIGSTORE_SCAFFOLDING_RELEASE_VERSION: "v0.7.31"
TEKTON_PIPELINES_RELEASE: "https://infra.tekton.dev/tekton-releases/pipeline/previous/${{ inputs.pipelines-release }}/release.yaml"
Expand All @@ -45,8 +48,6 @@ jobs:
go-version-file: "go.mod"

- uses: ko-build/setup-ko@61b4d1d396f5b2e7d6bb6fefdce3dc38d1a13445 # v0.10
with:
version: v0.18.1

- name: Install mirror, kind, knative + sigstore
uses: sigstore/scaffolding/actions/setup@8bd68672d418e5bd1b0ee1f2e2981874c3a30967 # v0.7.33
Expand Down
2 changes: 1 addition & 1 deletion test/e2e-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function install_pipeline_crd() {

function install_chains() {
echo ">> Deploying Tekton Chains"
ko apply -f config/ || fail_test "Tekton Chains installation failed"
ko apply ${KO_FLAGS:-} -f config/ || fail_test "Tekton Chains installation failed"

# Wait for pods to be running in the namespaces we are deploying to
wait_until_pods_running ${namespace} || fail_test "Tekton Chains did not come up"
Expand Down
Loading