From f49e66a8248a8c607be39f97ae52f12b0960da17 Mon Sep 17 00:00:00 2001 From: Matej Feder Date: Wed, 4 Oct 2023 11:20:16 +0200 Subject: [PATCH] Fix daily pipeline (#604) A daily pipeline did not work for release/v6.0.0 branch. Zuul's behavior can be summarized as follows: when determining what tasks to execute on the release/v6.0.0 branch, it focuses solely on the project definition within the release/v6.0.0 branch, not the main branch. Additionally, it examines the project definitions in the configuration project, and after gathering the jobs to be executed, it filters them down by matching branches. Refer to the second paragraph of the docs: https://zuul-ci.org/docs/zuul/latest/config/project.html To resolve this issue, this commit removes the daily pipeline definition from the main branch. Instead, the project's daily pipeline will now be configured in the Zuul configuration project. See related PR: https://github.com/SovereignCloudStack/zuul-config/pull/31 Signed-off-by: Matej Feder --- .zuul.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.zuul.yaml b/.zuul.yaml index ad0639f3..71afd7f6 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -49,11 +49,3 @@ unlabel-on-update-e2e-quick-test: jobs: - noop - periodic-daily: - jobs: - - k8s-cluster-api-provider-e2e-conformance: - branches: - - main - - release/v6.0.0 - vars: - git_reference: "{{ zuul.branch }}"