From 6e15c9861d8b72e7585b2c079cc3cf197d71654f Mon Sep 17 00:00:00 2001 From: Mohamed Omar Asaker Date: Mon, 19 Feb 2024 13:26:16 +0000 Subject: [PATCH] ci: include weekly pipeline in GitLab CI Add weekly pipeline to the GitLab CI top level. Signed-off-by: Mohamed Omar Asaker Change-Id: I71ebe91a9d672c270ceff09e2dac6451f917658d --- .gitlab/.gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab/.gitlab-ci.yml b/.gitlab/.gitlab-ci.yml index 4eef0464c..4d05c0817 100644 --- a/.gitlab/.gitlab-ci.yml +++ b/.gitlab/.gitlab-ci.yml @@ -11,6 +11,7 @@ variables: options: - "deployment-pipeline" - "daily-pipeline" + - "weekly-pipeline" description: "The CI pipeline to run" include: @@ -21,3 +22,7 @@ include: - local: .gitlab/pipelines/daily-pipeline.yml rules: - if: $PIPELINE_TYPE == "daily-pipeline" + + - local: .gitlab/pipelines/weekly-pipeline.yml + rules: + - if: $PIPELINE_TYPE == "weekly-pipeline"