6a0e7ea7b8
Currently job rules are spread across the various templates and jobs, making it hard to understand exactly what runs in what scenario. This leads to inconsistency in the rules and increased maint burden. The intent is that we introduce a common '.base_job_template' which will have a general purpose 'rules:' block. No other template or job should define 'rules:', but instead they must rely on the inherited rules. To allow behaviour to be tweaked, rules will be influenced by a number of variables with the naming scheme 'QEMU_JOB_nnnn'. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20220526110705.59952-2-berrange@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20220527153603.887929-29-alex.bennee@linaro.org>
16 lines
566 B
YAML
16 lines
566 B
YAML
# This file contains the set of jobs run by the QEMU project:
|
|
# https://gitlab.com/qemu-project/qemu/-/pipelines
|
|
|
|
include:
|
|
- local: '/.gitlab-ci.d/base.yml'
|
|
- local: '/.gitlab-ci.d/stages.yml'
|
|
- local: '/.gitlab-ci.d/edk2.yml'
|
|
- local: '/.gitlab-ci.d/opensbi.yml'
|
|
- local: '/.gitlab-ci.d/containers.yml'
|
|
- local: '/.gitlab-ci.d/crossbuilds.yml'
|
|
- local: '/.gitlab-ci.d/buildtest.yml'
|
|
- local: '/.gitlab-ci.d/static_checks.yml'
|
|
- local: '/.gitlab-ci.d/custom-runners.yml'
|
|
- local: '/.gitlab-ci.d/cirrus.yml'
|
|
- local: '/.gitlab-ci.d/windows.yml'
|