Message ID | 20241219111831.31736-1-oleksii.kurochko@gmail.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | automation: pin down CONFIG_QEMU_PLATFORM for RISC-V's randconfig job | expand |
diff --git a/automation/gitlab-ci/build.yaml b/automation/gitlab-ci/build.yaml index 1ca6764225..1b884cc81c 100644 --- a/automation/gitlab-ci/build.yaml +++ b/automation/gitlab-ci/build.yaml @@ -732,9 +732,10 @@ debian-12-riscv64-gcc: CONFIG_COVERAGE=n CONFIG_EXPERT=y CONFIG_GRANT_TABLE=n + CONFIG_LIVEPATCH=n CONFIG_MEM_ACCESS=n CONFIG_PERF_COUNTERS=n - CONFIG_LIVEPATCH=n + CONFIG_QEMU_PLATFORM=y CONFIG_XSM=n debian-12-riscv64-gcc-randconfig:
Except setting CONFIG_QEMU_PLATFORM=y in tiny64_defconfig, CONFIG_QEMU_PLATFORM should be fixed for RISC-V's randconfig job. Otherwise, an expected compilation error for RISC-V's randconfig job will occur since clean_and_invalidate_dcache_va_range() and clean_dcache_va_range() are currently implemented only for the QEMU platform. Additionally, sort the EXTRA_FIXED_RANDCONFIG list alphabetically. Reported-by: Andrew Cooper <andrew.cooper3@citrix.com> Fixes: f92e2709bd ("xen/riscv: implement data and instruction cache operations") Signed-off-by: Oleksii Kurochko <oleksii.kurochko@gmail.com> --- automation/gitlab-ci/build.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)