ci: move mtl-fw.json to .gitlab-ci directory

Placing mtl-fw.json in src/intel/ci/mtl-fw.json works for the
mesa build, but it fails to fetch in drm-ci. Move it to the
.gitlab-ci directory so it is included in the artifacts used
for building the kernel/rootfs in drm-ci.

Signed-off-by: Vignesh Raman <vignesh.raman@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30947>
This commit is contained in:
Vignesh Raman 2024-09-02 16:10:33 +05:30 committed by Marge Bot
parent 31aa56ab4a
commit 1eb98bc457
3 changed files with 14 additions and 4 deletions

View File

@ -394,16 +394,23 @@ fedora/x86_64_build:
# Get firmware directly rather than using package versions.
# Change KERNEL_ROOTFS_TAG to add firmware changes.
# FIRMWARE_FILES is a list of json files arranged by vendor in src/**/ci/
.firmware:
.firmware_x86_64:
variables:
FIRMWARE_FILES: |
.gitlab-ci/firmware/i915/mtl-fw.json
.firmware_arm64:
variables:
FIRMWARE_FILES: |
.firmware_arm32:
variables:
FIRMWARE_FILES: |
src/intel/ci/mtl-fw.json
.kernel+rootfs:
extends:
- .container+build-rules
- .debian-container-version
- .firmware
stage: container
timeout: 90m
variables:
@ -417,6 +424,7 @@ kernel+rootfs_x86_64:
extends:
- .use-debian/x86_64_build-base
- .kernel+rootfs
- .firmware_x86_64
image: "$FDO_BASE_IMAGE"
variables:
DEBIAN_ARCH: "amd64"
@ -426,6 +434,7 @@ kernel+rootfs_arm64:
extends:
- .use-debian/arm64_build
- .kernel+rootfs
- .firmware_arm64
tags:
- aarch64
variables:
@ -434,6 +443,7 @@ kernel+rootfs_arm64:
kernel+rootfs_arm32:
extends:
- kernel+rootfs_arm64
- .firmware_arm32
variables:
DEBIAN_ARCH: "armhf"

View File

@ -30,7 +30,7 @@ variables:
DEBIAN_TEST_ANDROID_TAG: "20240826-runner"
DEBIAN_TEST_GL_TAG: "20240830-piglit-93"
DEBIAN_TEST_VK_TAG: "20240830-piglit-93"
KERNEL_ROOTFS_TAG: "20240830-piglit-93"
KERNEL_ROOTFS_TAG: "20240902-mtlfw"
ALPINE_X86_64_BUILD_TAG: "20240814-var"
ALPINE_X86_64_LAVA_SSH_TAG: "20240401-wlproto"