Skip to content

Commit

Permalink
ci: add testcases for multi-arch building
Browse files Browse the repository at this point in the history
  • Loading branch information
DemesneGH committed Jul 9, 2024
1 parent d209f65 commit fdd01de
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fdd01de

Please sign in to comment.