The OpenSBI firmware build job follows the same pattern as the EDK2 job [1] that was removed earlier [2]: it exists to produce firmware binaries from CI artifacts, but those outputs are not consumed by the tree. Remove the job definition and its project include to avoid maintaining bitrotting container and firmware build logic. [1]71920809ce("gitlab-ci.yml: Add jobs to build EDK2 firmware binaries") [2]690ceb7193("gitlab-ci: Remove job building EDK2 firmware binaries") Signed-off-by: Bin Meng <bin.meng@processmission.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@oss.qualcomm.com> Message-ID: <20260706161716.29488-1-bin.meng@processmission.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
21 lines
555 B
YAML
21 lines
555 B
YAML
# This file contains the set of jobs run by the QEMU project:
|
|
# https://gitlab.com/qemu-project/qemu/-/pipelines
|
|
|
|
variables:
|
|
RUNNER_TAG: ""
|
|
|
|
default:
|
|
tags:
|
|
- $RUNNER_TAG
|
|
|
|
include:
|
|
- local: '/.gitlab-ci.d/base.yml'
|
|
- local: '/.gitlab-ci.d/stages.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/windows.yml'
|
|
- local: '/.gitlab-ci.d/macos.yml'
|