diff mbox series

[v4,22/22] CI: Add tests for gitlab and azure

Message ID 20250510154214.v4.22.I321f53b875ffb594a569796509e64830b9f3fe09@changeid
State Changes Requested
Delegated to: Tom Rini
Headers show
Series passage: Define a standard for firmware data flow | expand

Commit Message

Simon Glass May 10, 2025, 1:42 p.m. UTC
Add tests that check that SPL can generate a standard passage on ARM and
that U-Boot proper can accept it successfully.

- Finish the commit message

Signed-off-by: Simon Glass <sjg@chromium.org>
---

(no changes since v3)

Changes in v3:
- Add test for aarch64
- Add tests for azure

 .azure-pipelines.yml |  6 ++++++
 .gitlab-ci.yml       | 12 ++++++++++++
 2 files changed, 18 insertions(+)
diff mbox series

Patch

diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 5e1938b0526..4378ba4ec9d 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -459,6 +459,12 @@  stages:
         qemu_arm_sbsa_ref:
           TEST_PY_BD: "qemu-arm-sbsa"
           TEST_PY_TEST_SPEC: "not sleep"
+        qemu_arm_spl:
+          TEST_PY_BD: "qemu_arm_spl"
+          TEST_PY_TEST_SPEC: "test_passage"
+        qemu_arm64_spl:
+          TEST_PY_BD: "qemu_arm64_spl"
+          TEST_PY_TEST_SPEC: "test_passage"
         qemu_m68k:
           TEST_PY_BD: "M5208EVBE"
           TEST_PY_ID: "--id qemu"
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6f11331514b..bd8ec7555a8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -394,6 +394,18 @@  qemu_arm_sbsa test.py:
     TEST_PY_TEST_SPEC: "not sleep"
   <<: *buildman_and_testpy_dfn
 
+qemu_arm spl_test.py:
+  variables:
+    TEST_PY_BD: "qemu_arm_spl"
+    TEST_PY_TEST_SPEC: "test_passage"
+  <<: *buildman_and_testpy_dfn
+
+qemu_arm64 spl_test.py:
+  variables:
+    TEST_PY_BD: "qemu_arm64_spl"
+    TEST_PY_TEST_SPEC: "test_passage"
+  <<: *buildman_and_testpy_dfn
+
 qemu_m68k test.py:
   variables:
     TEST_PY_BD: "M5208EVBE"