From 5385d3eea76e7daad8b094d6f763a0b689649603 Mon Sep 17 00:00:00 2001 From: Puneet Punamiya Date: Tue, 30 Jul 2024 19:09:15 +0530 Subject: [PATCH] Update CI to use latest LTS release of tektoncd/pipeline (#1161) Signed-off-by: PuneetPunamiya --- test/e2e-tests.sh | 2 +- test/e2e_test.go | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/test/e2e-tests.sh b/test/e2e-tests.sh index d91c60846d..bbd0b434c0 100755 --- a/test/e2e-tests.sh +++ b/test/e2e-tests.sh @@ -31,7 +31,7 @@ header "Setting up environment" # Test against nightly instead of latest. install_tkn -export RELEASE_YAML="https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.45.0/release.yaml" +export RELEASE_YAML="https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.59.2/release.yaml" install_pipeline_crd install_chains diff --git a/test/e2e_test.go b/test/e2e_test.go index 4e1af98906..b142cae7fb 100644 --- a/test/e2e_test.go +++ b/test/e2e_test.go @@ -152,7 +152,10 @@ func TestRekor(t *testing.T) { "artifacts.oci.format": "simplesigning", "artifacts.oci.signer": "x509", "artifacts.oci.storage": "tekton", - "transparency.enabled": "manual", + // TODO: revert back to manual once we get the fix in tektoncd/pipeline + // Chains issue: https://github.com/tektoncd/chains/issues/1117 + // Pipelines issue: https://github.com/tektoncd/pipeline/issues/7291 + "transparency.enabled": "true", }, getObject: getTaskRunObject, }, @@ -165,7 +168,10 @@ func TestRekor(t *testing.T) { "artifacts.oci.format": "simplesigning", "artifacts.oci.signer": "x509", "artifacts.oci.storage": "tekton", - "transparency.enabled": "manual", + // TODO: revert back to manual once we get the fix in tektoncd/pipeline + // Chains issue: https://github.com/tektoncd/chains/issues/1117 + // Pipelines issue: https://github.com/tektoncd/pipeline/issues/7291 + "transparency.enabled": "true", }, getObject: getPipelineRunObject, },