From a151926c80c3c8c279d664ca8182c46763ca0e42 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Sat, 10 Apr 2021 12:58:55 +0200 Subject: [PATCH] gitlab: Move current job set to qemu-project.yml MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit To allow forks to easily decide which jobs they want to run, but without disrupting the current default, move the current set of jobs to a new file corresponding to the jobs run by the mainstream project CI: https://gitlab.com/qemu-project/qemu/-/pipelines Reviewed-by: Willian Rampazzo Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Alex Bennée Message-Id: <20210511072952.2813358-11-f4bug@amsat.org> --- .gitlab-ci.yml => .gitlab-ci.d/qemu-project.yml | 3 +++ .gitlab-ci.yml | 8 +------- 2 files changed, 4 insertions(+), 7 deletions(-) copy .gitlab-ci.yml => .gitlab-ci.d/qemu-project.yml (71%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.d/qemu-project.yml similarity index 71% copy from .gitlab-ci.yml copy to .gitlab-ci.d/qemu-project.yml index aea58813a2..64cb2ba1da 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.d/qemu-project.yml @@ -1,3 +1,6 @@ +# This file contains the set of jobs run by the QEMU project: +# https://gitlab.com/qemu-project/qemu/-/pipelines + include: - local: '/.gitlab-ci.d/stages.yml' - local: '/.gitlab-ci.d/edk2.yml' diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aea58813a2..533a7e6133 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,2 @@ include: - - 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/qemu-project.yml' -- 2.11.4.GIT