diff mbox series

[2/2] CI: Build custom image for N1SDP optee-xtest

Message ID 20230901163626.152-3-anusmita.duttamazumder@arm.com
State New
Headers show
Series CI: Build custom image for N1SDP optee-xtest | expand

Commit Message

anusmita.duttamazumder@arm.com Sept. 1, 2023, 4:36 p.m. UTC
From: Anusmita Dutta Mazumder <anusmita.duttamazumder@arm.com>

Build a custom N1SDP image with only optee-xtests as part of the image. A fresh custom image build is necessary to include the relevant test suite for running the xtests.

Signed-off-by: Anusmita Dutta Mazumder <anusmita.duttamazumder@arm.com>
---
 .gitlab-ci.yml     |  1 +
 ci/n1sdp-optee.yml | 12 ++++++++++++
 2 files changed, 13 insertions(+)
 create mode 100644 ci/n1sdp-optee.yml
diff mbox series

Patch

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 548b8e76..a2af8716 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -154,6 +154,7 @@  n1sdp:
   parallel:
     matrix:
       - TS: [none, n1sdp-ts]
+      - OPTEE: [none, n1sdp-optee]
 
 qemu-generic-arm64:
   extends: .build
diff --git a/ci/n1sdp-optee.yml b/ci/n1sdp-optee.yml
new file mode 100644
index 00000000..f2b50abf
--- /dev/null
+++ b/ci/n1sdp-optee.yml
@@ -0,0 +1,12 @@ 
+header:
+  version: 14
+
+# Config specific for the optee-xtests
+local_conf_header:
+  optee-test: |
+    # Include ARM FFA
+    MACHINE_FEATURES:append = " arm-ffa"
+    # Include trusted services
+    TEST_SUITES:append = " trusted_services"
+    # Include Optee xtests
+    IMAGE_INSTALL:append = " optee-test"