diff options
| -rw-r--r-- | .azure-pipelines.yml | 6 | ||||
| -rw-r--r-- | .gitlab-ci.yml | 12 |
2 files changed, 18 insertions, 0 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 5314a8b2444..3f671dd078d 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -510,6 +510,12 @@ stages: qemu_riscv64_spl: TEST_PY_BD: "qemu-riscv64_spl" TEST_PY_TEST_SPEC: "not sleep" + qemu_riscv64_smode: + TEST_PY_BD: "qemu-riscv64_smode" + TEST_PY_TEST_SPEC: "not sleep" + qemu_riscv64_smode_acpi: + TEST_PY_BD: "qemu-riscv64_smode_acpi" + TEST_PY_TEST_SPEC: "not sleep" qemu_x86: TEST_PY_BD: "qemu-x86" TEST_PY_TEST_SPEC: "not sleep" diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 434945ce350..86d3c741ea1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -466,6 +466,18 @@ qemu-riscv64_spl test.py: TEST_PY_TEST_SPEC: "not sleep" <<: *buildman_and_testpy_dfn +qemu-riscv64_smode test.py: + variables: + TEST_PY_BD: "qemu-riscv64_smode" + TEST_PY_TEST_SPEC: "not sleep" + <<: *buildman_and_testpy_dfn + +qemu-riscv64_smode_acpi test.py: + variables: + TEST_PY_BD: "qemu-riscv64_smode_acpi" + TEST_PY_TEST_SPEC: "not sleep" + <<: *buildman_and_testpy_dfn + qemu-x86 test.py: variables: TEST_PY_BD: "qemu-x86" |
