1workflow: 2 rules: 3 - if: $CI_COMMIT_BRANCH =~ /^(master|smoke|^coverity-tested\/.*|stable-.*)$/ 4 when: never 5 - when: always 6 7stages: 8 - analyze 9 - build 10 - test 11 12include: 13 - 'automation/gitlab-ci/analyze.yaml' 14 - 'automation/gitlab-ci/build.yaml' 15 - 'automation/gitlab-ci/test.yaml' 16