Skip to content

Commit

Permalink
.azure-pipelines.yml: add Qemu tests for MIPS Malta board
Browse files Browse the repository at this point in the history
Add Qemu tests for the MIPS Malta machine as a replacement for
the deprecated generic MIPS machine.

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>

Series-to: u-boot
Series-cc: trini
Series-cc: marex
Series-cc: Stephen Warren <swarren@nvidia.com>
Series-cc: Bin Meng <bmeng.cn@gmail.com>
Series-cc: Heinrich Schuchardt <xypron.glpk@gmx.de>

Cover-letter:
Add Qemu tests for MIPS Malta machine

The currently used qemu_mips target respectively the Qemu
generic MIPS machine is marked as deprecated by Qemu. One should
use the MIPS Malta machine. Also the qemu_mips target only exists
in U-Boot, the Linux support was removed centuries ago. Thus we
should deprecated and remove the qemu_mips target eventually.
The first step would be to move the MIPS specific Qemu CI tests to
the Malta targets which also covers all 32/64 bit and Little/Big
Endian variants.

Successful CI runs on Gitlab, Travis CI and Azure:

https://gitlab.denx.de/u-boot/custodians/u-boot-mips/pipelines/3557
https://travis-ci.org/github/danielschwierzeck/u-boot/builds/695247372
https://dev.azure.com/danielschwierzeck/u-boot/_build/results?buildId=4&view=results

Complementary pull request for uboot-test-hooks:

swarren/uboot-test-hooks#30

END
  • Loading branch information
danielschwierzeck committed Jun 15, 2020
1 parent ed83389 commit 9f210bf
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .azure-pipelines.yml
Expand Up @@ -226,6 +226,22 @@ jobs:
qemu_mips64el:
TEST_PY_BD: "qemu_mips64el"
TEST_PY_TEST_SPEC: "not sleep"
qemu_malta:
TEST_PY_BD: "malta"
TEST_PY_ID: "--id qemu"
TEST_PY_TEST_SPEC: "not sleep and not efi"
qemu_maltael:
TEST_PY_BD: "maltael"
TEST_PY_ID: "--id qemu"
TEST_PY_TEST_SPEC: "not sleep and not efi"
qemu_malta64:
TEST_PY_BD: "malta64"
TEST_PY_ID: "--id qemu"
TEST_PY_TEST_SPEC: "not sleep and not efi"
qemu_malta64el:
TEST_PY_BD: "malta64el"
TEST_PY_ID: "--id qemu"
TEST_PY_TEST_SPEC: "not sleep and not efi"
qemu_ppce500:
TEST_PY_BD: "qemu-ppce500"
TEST_PY_TEST_SPEC: "not sleep"
Expand Down

0 comments on commit 9f210bf

Please sign in to comment.