Skip to content

Commit

Permalink
CI: Enable 32-bit Rust examples runtime testing
Browse files Browse the repository at this point in the history
Now OP-TEE build system has been updated to support 32-bit Rust TAs, so
enable runtime testing for them.

Signed-off-by: Sumit Garg <[email protected]>
  • Loading branch information
b49020 authored and DemesneGH committed Feb 10, 2024
1 parent bc6ae89 commit 2af52d7
Showing 1 changed file with 37 additions and 12 deletions.
49 changes: 37 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ jobs:
# Build OP-TEE rust examples for Arm 64-bit both host and TA
export TA_DEV_KIT_DIR=~/optee_os/out/arm-plat-vexpress/export-ta_arm64/
make
make -j`nproc`
# Build OP-TEE rust examples for Arm 64-bit host and 32-bit TA
export TA_DEV_KIT_DIR=~/optee_os/out/arm-plat-vexpress/export-ta_arm32/
export CROSS_COMPILE_HOST=$CROSS_COMPILE64
export CROSS_COMPILE_TA=$CROSS_COMPILE32
export TARGET_HOST="aarch64-unknown-linux-gnu"
export TARGET_TA="arm-unknown-linux-gnueabihf"
make clean && make
make clean && make -j`nproc`
# Build OP-TEE rust examples for Arm 32-bit both host and TA
export TA_DEV_KIT_DIR=~/optee_os/out/arm-plat-vexpress/export-ta_arm32/
Expand All @@ -102,20 +102,22 @@ jobs:
export TARGET_HOST="arm-unknown-linux-gnueabihf"
export TARGET_TA="arm-unknown-linux-gnueabihf"
(cd ~/optee_client && make clean && make CROSS_COMPILE=$CROSS_COMPILE32 WITH_TEEACL=0)
make clean && make
make clean && make -j`nproc`
# Build OP-TEE rust examples for Arm 32-bit host and 64-bit TA
export TA_DEV_KIT_DIR=~/optee_os/out/arm-plat-vexpress/export-ta_arm64/
export CROSS_COMPILE_HOST=$CROSS_COMPILE32
export CROSS_COMPILE_TA=$CROSS_COMPILE64
export TARGET_HOST="arm-unknown-linux-gnueabihf"
export TARGET_TA="aarch64-unknown-linux-gnu"
make clean && make
make clean && make -j`nproc`
build-and-run-examples-in-OPTEE-repo:
OPTEE-repo-build-and-run-examples-64bit-TAs:
runs-on: ubuntu-latest
container: teaclave/teaclave-trustzone-sdk-build:0.3.0
steps:
- name: Remove /__t/*
run: rm -rf /__t/*
- name: Checkout repository
uses: actions/checkout@v2
with:
Expand All @@ -129,21 +131,44 @@ jobs:
mkdir -p ~/optee-qemuv8 && cd ~/optee-qemuv8 &&
repo init -u https://github.com/OP-TEE/manifest.git -m qemu_v8.xml &&
repo sync -j4 --no-clone-bundle
- name: Setting up $HOME
- name: Build images and run tests
run: |
cp /root/.bashrc $HOME/.bashrc &&
ln -sf /root/.rustup ~/.rustup &&
ln -sf /root/.cargo ~/.cargo
apt update && apt install libslirp-dev -y
cd ~/optee-qemuv8
rm -rf optee_rust/ &&
mv $GITHUB_WORKSPACE/incubator-teaclave-trustzone-sdk optee_rust/
cd build &&
make -j3 toolchains &&
make -j`nproc` RUST_ENABLE=y check
OPTEE-repo-build-and-run-examples-32bit-TAs:
runs-on: ubuntu-latest
container: teaclave/teaclave-trustzone-sdk-build:0.3.0
steps:
- name: Remove /__t/*
run: rm -rf /__t/*
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: recursive
path: 'incubator-teaclave-trustzone-sdk'
- name: Checkout OP-TEE repository
run: |
mkdir -p ~/bin
curl https://storage.googleapis.com/git-repo-downloads/repo-1 > ~/bin/repo && chmod a+x ~/bin/repo
export PATH=~/bin:$PATH
mkdir -p ~/optee-qemuv8 && cd ~/optee-qemuv8 &&
repo init -u https://github.com/OP-TEE/manifest.git -m qemu_v8.xml &&
repo sync -j4 --no-clone-bundle
- name: Build images and run tests
run: |
apt update && apt install libslirp-dev -y
cd ~/optee-qemuv8
rm -rf optee_rust/ &&
mv $GITHUB_WORKSPACE/incubator-teaclave-trustzone-sdk optee_rust/
export OPTEE_DIR=$(pwd)
cd build &&
make -j2 toolchains &&
make CFG_TEE_CORE_LOG_LEVEL=0 OPTEE_RUST_ENABLE=y check-rust
make -j3 toolchains &&
make -j`nproc` RUST_ENABLE=y COMPILE_S_USER=32 check
license:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2af52d7

Please sign in to comment.