Repositories under people/* only execute the analyze step if manually triggered, but in order to avoid blocking the rest of the pipeline if such step is not run, allow it to fail.
Reported-by: Andrew Cooper <[email protected]> Signed-off-by: Nicola Vetrini <[email protected]> --- See https://gitlab.com/xen-project/people/bugseng/xen/-/pipelines/1278550868 for a sample pipeline with this change applied. --- automation/gitlab-ci/analyze.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/automation/gitlab-ci/analyze.yaml b/automation/gitlab-ci/analyze.yaml index 32bf57014961..02e0ea692c66 100644 --- a/automation/gitlab-ci/analyze.yaml +++ b/automation/gitlab-ci/analyze.yaml @@ -31,6 +31,7 @@ when: never - if: $WTOKEN && $CI_PROJECT_PATH =~ /^xen-project\/people\/.*$/ when: manual + allow_failure: true - !reference [.eclair-analysis, rules] eclair-x86_64: -- 2.34.1
