From 5ab46819c5b2f7701773e35ef7d1b74f7f351c10 Mon Sep 17 00:00:00 2001 From: Shruti Gupta Date: Fri, 28 Jul 2023 15:44:06 +0000 Subject: [PATCH] test(realm): deprecate tftf pack_realm command Deprecate pack_realm build command. To build Realm payload tests use ENABLE_REALM_PAYLOAD_TESTS=1 Signed-off-by: Ryan Roberts --- config/tftf-base.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/tftf-base.yaml b/config/tftf-base.yaml index d3e470d..6822524 100644 --- a/config/tftf-base.yaml +++ b/config/tftf-base.yaml @@ -18,11 +18,12 @@ build: params: PLAT: fvp + ENABLE_REALM_PAYLOAD_TESTS: 1 build: # tfa-tests has makefile dependency bug that makes parallel make for more # than ~8 jobs unreliable, so limit it to 8. - - "make BUILD_BASE=${param:builddir} ${param:join_equal} -j$$(( ${param:jobs} < 8 ? ${param:jobs} : 8 )) all pack_realm" + - "make BUILD_BASE=${param:builddir} ${param:join_equal} -j$$(( ${param:jobs} < 8 ? ${param:jobs} : 8 )) all" clean: - make BUILD_BASE=${param:builddir} realclean -- GitLab