From: Nicola Vetrini <[email protected]> These jobs should not run in regular scans, but only in xen-project/people repositories and branches to speed up pipeline execution.
Signed-off-by: Nicola Vetrini <[email protected]> --- This should alleviate some of the recent delays of the ECLAIR pipelines --- automation/gitlab-ci/analyze.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/automation/gitlab-ci/analyze.yaml b/automation/gitlab-ci/analyze.yaml index 5ddfe37903..88bc42f5c3 100644 --- a/automation/gitlab-ci/analyze.yaml +++ b/automation/gitlab-ci/analyze.yaml @@ -52,6 +52,8 @@ eclair-x86_64-testing: tags: - eclair-analysis-testing rules: + - if: $CI_PROJECT_PATH !~ /^xen-project\/people/.*$/ + when: never - if: $ECLAIR_TESTING when: always - !reference [.eclair-analysis:triggered, rules] @@ -110,6 +112,8 @@ eclair-ARM64-testing: tags: - eclair-analysis-testing rules: + - if: $CI_PROJECT_PATH !~ /^xen-project\/people/.*$/ + when: never - if: $ECLAIR_TESTING when: always - !reference [.eclair-analysis:triggered, rules] -- 2.52.0
