This is an automated email from the ASF dual-hosted git repository. yuanz pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-trustzone-sdk.git
commit 0fde5a670202f9c36103a0ffe83b082000d35244 Author: Yuan Zhuang <[email protected]> AuthorDate: Tue Jul 9 10:47:59 2024 +0000 ci: add testcases for multi-arch building --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fae7d5a..8d486b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,6 +75,18 @@ jobs: source environment make -j`nproc` + # Build OP-TEE Rust examples for Arm 32-bit host and 64-bit TA + export ARCH_HOST=arm + unset ARCH_TA + source environment + make -j`nproc` + + # Build OP-TEE Rust examples for Arm 64-bit host and 32-bit TA + unset ARCH_HOST + export ARCH_TA=arm + source environment + make -j`nproc` + # Build OP-TEE Rust examples for Arm 64-bit both host and TA unset ARCH_TA unset ARCH_HOST --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
