On Mon, 5 Jan 2026 at 11:20, Kuan-Wei Chiu <[email protected]> wrote: > > Enable CI testing for the newly introduced QEMU m68k 'virt' board on > both GitLab CI and Azure Pipelines. This ensures the new M68040 > architecture support is built and booted correctly in the emulated > environment. > > Signed-off-by: Kuan-Wei Chiu <[email protected]> > Reviewed-by: Tom Rini <[email protected]> > --- > Changes in v5: > - Rebase on u-boot/next branch. > > .azure-pipelines.yml | 3 +++ > .gitlab-ci.yml | 6 ++++++ > 2 files changed, 9 insertions(+)
Reviewed-by: Simon Glass <[email protected]> > > diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml > index 81a36da7114..e9fee478117 100644 > --- a/.azure-pipelines.yml > +++ b/.azure-pipelines.yml > @@ -520,6 +520,9 @@ stages: > TEST_PY_ID: "--id qemu" > TEST_PY_TEST_SPEC: "not sleep and not efi" > OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR" > + qemu_m68k_virt: > + TEST_PY_BD: "qemu-m68k" > + TEST_PY_TEST_SPEC: "not sleep" > qemu_malta: > TEST_PY_BD: "malta" > TEST_PY_ID: "--id qemu" > diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml > index 28a32f9f4d3..ff805fae054 100644 > --- a/.gitlab-ci.yml > +++ b/.gitlab-ci.yml > @@ -417,6 +417,12 @@ qemu_m68k test.py: > OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR" > <<: *buildman_and_testpy_dfn > > +qemu_m68k_virt test.py: > + variables: > + TEST_PY_BD: "qemu-m68k" > + TEST_PY_TEST_SPEC: "not sleep" > + <<: *buildman_and_testpy_dfn > + > qemu_malta test.py: > variables: > TEST_PY_BD: "malta" > -- > 2.52.0.358.g0dd7633a29-goog >

