1b10b4515SJerome Forissiername: CI 2b10b4515SJerome Forissieron: [push, pull_request] 39c16bc95SAlexpermissions: 49c16bc95SAlex contents: read # to fetch code (actions/checkout) 5b10b4515SJerome Forissierjobs: 6b10b4515SJerome Forissier code_style: 7b10b4515SJerome Forissier name: Code style 8b10b4515SJerome Forissier runs-on: ubuntu-latest 9b10b4515SJerome Forissier container: jforissier/optee_os_ci 10b10b4515SJerome Forissier steps: 11b10b4515SJerome Forissier - name: Checkout 12c847c2c9SJerome Forissier uses: actions/checkout@v4 13b10b4515SJerome Forissier with: 143957cdc4SJerome Forissier fetch-depth: 0 # full history so checkpatch can check commit IDs in commit messages 15b10b4515SJerome Forissier - name: Update Git config 16b10b4515SJerome Forissier run: git config --global --add safe.directory ${GITHUB_WORKSPACE} 17b10b4515SJerome Forissier - name: Run checkpatch 18b10b4515SJerome Forissier shell: bash 19b10b4515SJerome Forissier run: | 20b10b4515SJerome Forissier # checkpatch task 21b10b4515SJerome Forissier set -e 22b10b4515SJerome Forissier git config --global --add safe.directory /__w/optee_os/optee_os 23b10b4515SJerome Forissier pushd . >/dev/null 24b10b4515SJerome Forissier mkdir -p /tmp/linux/scripts 25b10b4515SJerome Forissier cd /tmp/linux/scripts 26b10b4515SJerome Forissier wget --quiet https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/plain/scripts/checkpatch.pl 27b10b4515SJerome Forissier chmod +x checkpatch.pl 28b10b4515SJerome Forissier wget --quiet https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/plain/scripts/spelling.txt 29b10b4515SJerome Forissier echo "invalid.struct.name" >const_structs.checkpatch 30b10b4515SJerome Forissier export PATH=/tmp/linux/scripts:$PATH 31b10b4515SJerome Forissier popd >/dev/null 32b10b4515SJerome Forissier source scripts/checkpatch_inc.sh 33b10b4515SJerome Forissier function _do() { echo '>>' $*; $*; } 34b10b4515SJerome Forissier # Run checkpatch.pl: 35b10b4515SJerome Forissier # - on the tip of the branch only if we're not in a pull request 36b10b4515SJerome Forissier # - otherwise: 37b10b4515SJerome Forissier # * on each commit in the development branch that is not in the target (merge to) branch 38b10b4515SJerome Forissier # * on the global diff if the PR contains more than one commit (useful to check if fixup 39b10b4515SJerome Forissier # commits do solve previous checkpatch errors) 40b10b4515SJerome Forissier if [ "${GITHUB_EVENT_NAME}" = "push" ]; then \ 41b10b4515SJerome Forissier _do checkpatch HEAD || failed=1; \ 42b10b4515SJerome Forissier else \ 43b10b4515SJerome Forissier for c in $(git rev-list HEAD^1..HEAD^2); do \ 44b10b4515SJerome Forissier _do checkpatch $c || failed=1; \ 45b10b4515SJerome Forissier done; \ 46b10b4515SJerome Forissier if [ "$(git rev-list --count HEAD^1..HEAD^2)" -gt 1 ]; then \ 47b10b4515SJerome Forissier _do checkdiff $(git rev-parse HEAD^1) $(git rev-parse HEAD^2) || failed=1; \ 48b10b4515SJerome Forissier fi; \ 49b10b4515SJerome Forissier fi 50b10b4515SJerome Forissier [ -z "$failed" ] 51b10b4515SJerome Forissier - name: Run pycodestyle 5232692b31SJerome Forissier if: success() || failure() 53b10b4515SJerome Forissier run: | 54b10b4515SJerome Forissier # pycodestyle task 55b10b4515SJerome Forissier sudo -E bash -c "apt update -qq -y && apt install -qq -y pycodestyle" 56b10b4515SJerome Forissier pycodestyle scripts/*.py core/arch/arm/plat-stm32mp1/scripts/stm32image.py 57b10b4515SJerome Forissier builds: 58b10b4515SJerome Forissier name: make (multi-platform) 59b10b4515SJerome Forissier runs-on: ubuntu-latest 60b10b4515SJerome Forissier container: jforissier/optee_os_ci 61b10b4515SJerome Forissier steps: 62b10b4515SJerome Forissier - name: Restore build cache 63b10b4515SJerome Forissier uses: actions/cache@v3 64b10b4515SJerome Forissier with: 65b10b4515SJerome Forissier path: /github/home/.cache/ccache 66b10b4515SJerome Forissier key: builds-cache-${{ github.sha }} 67b10b4515SJerome Forissier restore-keys: | 68b10b4515SJerome Forissier builds-cache- 69b10b4515SJerome Forissier - name: Checkout 70c847c2c9SJerome Forissier uses: actions/checkout@v4 71b10b4515SJerome Forissier - shell: bash 72b10b4515SJerome Forissier run: | 73b10b4515SJerome Forissier # build task 74b10b4515SJerome Forissier set -e -v 75b10b4515SJerome Forissier export LC_ALL=C 76b10b4515SJerome Forissier export PATH=/usr/local/bin:$PATH # clang 77b10b4515SJerome Forissier export CFG_DEBUG_INFO=n 78b10b4515SJerome Forissier export CFG_WERROR=y 79b10b4515SJerome Forissier 80b10b4515SJerome Forissier function _make() { make -j$(nproc) -s O=out $*; } 8166370233SJorge Ramirez-Ortiz function download_plug_and_trust() { mkdir -p $HOME/se050 && git clone --single-branch -b v0.4.2 https://github.com/foundriesio/plug-and-trust $HOME/se050/plug-and-trust || (rm -rf $HOME/se050 ; echo Nervermind); } 825cc24a60SNicola Mazzucato 83f1318653SEtienne Carriere function download_scp_firmware() { git clone --depth 1 https://github.com/ARM-software/SCP-firmware.git -b v2.13.0 $HOME/scp-firmware || echo Nervermind; } 84b10b4515SJerome Forissier 85b10b4515SJerome Forissier ccache -s -v 86b10b4515SJerome Forissier download_plug_and_trust 875948737dSEtienne Carriere download_scp_firmware 88b10b4515SJerome Forissier 8927acbe2bSJerome Forissier export CROSS_COMPILE32="ccache arm-linux-gnueabihf-" 9027acbe2bSJerome Forissier export CROSS_COMPILE64="ccache aarch64-linux-gnu-" 9127acbe2bSJerome Forissier 92b10b4515SJerome Forissier _make 93b10b4515SJerome Forissier _make COMPILER=clang 94b10b4515SJerome Forissier _make CFG_TEE_CORE_LOG_LEVEL=4 CFG_TEE_CORE_DEBUG=y CFG_TEE_TA_LOG_LEVEL=4 CFG_CC_OPT_LEVEL=0 CFG_DEBUG_INFO=y 95b10b4515SJerome Forissier _make CFG_TEE_CORE_LOG_LEVEL=0 CFG_TEE_CORE_DEBUG=n CFG_TEE_TA_LOG_LEVEL=0 CFG_DEBUG_INFO=n CFG_ENABLE_EMBEDDED_TESTS=n 96b10b4515SJerome Forissier _make CFG_TEE_CORE_MALLOC_DEBUG=y CFG_CORE_DEBUG_CHECK_STACKS=y 9783d0edeeSJerome Forissier _make CFG_CORE_SANITIZE_KADDRESS=y CFG_CORE_ASLR=n 98b10b4515SJerome Forissier _make CFG_LOCKDEP=y 99b10b4515SJerome Forissier _make CFG_CRYPTO=n 100b10b4515SJerome Forissier _make CFG_CRYPTO_{AES,DES}=n 101b10b4515SJerome Forissier _make CFG_CRYPTO_{DSA,RSA,DH}=n 102b10b4515SJerome Forissier _make CFG_CRYPTO_{DSA,RSA,DH,ECC}=n 103b10b4515SJerome Forissier _make CFG_CRYPTO_{H,C,CBC_}MAC=n 104b10b4515SJerome Forissier _make CFG_CRYPTO_{G,C}CM=n 105b10b4515SJerome Forissier _make CFG_CRYPTO_{MD5,SHA{1,224,256,384,512,512_256}}=n 106b10b4515SJerome Forissier _make CFG_WITH_PAGER=y out/core/tee{,-pager,-pageable}.bin 107b10b4515SJerome Forissier _make CFG_WITH_PAGER=y CFG_CRYPTOLIB_NAME=mbedtls CFG_CRYPTOLIB_DIR=lib/libmbedtls 108b10b4515SJerome Forissier _make CFG_WITH_PAGER=y CFG_WITH_LPAE=y 109b10b4515SJerome Forissier _make CFG_WITH_LPAE=y 1109cded664SJens Wiklander _make CFG_CORE_PREALLOC_EL0_TBLS=y 111b10b4515SJerome Forissier _make CFG_RPMB_FS=y 112b10b4515SJerome Forissier _make CFG_RPMB_FS=y CFG_RPMB_TESTKEY=y 113b10b4515SJerome Forissier _make CFG_REE_FS=n CFG_RPMB_FS=y 114b10b4515SJerome Forissier _make CFG_WITH_PAGER=y CFG_WITH_LPAE=y CFG_RPMB_FS=y CFG_DT=y CFG_TEE_CORE_LOG_LEVEL=1 CFG_TEE_CORE_DEBUG=y CFG_CC_OPT_LEVEL=0 CFG_DEBUG_INFO=y 115b10b4515SJerome Forissier _make CFG_WITH_PAGER=y CFG_WITH_LPAE=y CFG_RPMB_FS=y CFG_DT=y CFG_TEE_CORE_LOG_LEVEL=0 CFG_TEE_CORE_DEBUG=n DEBUG=0 116b10b4515SJerome Forissier _make CFG_BUILT_IN_ARGS=y CFG_PAGEABLE_ADDR=0 CFG_NS_ENTRY_ADDR=0 CFG_DT_ADDR=0 CFG_DT=y 117b10b4515SJerome Forissier _make CFG_FTRACE_SUPPORT=y CFG_ULIBS_MCOUNT=y CFG_ULIBS_SHARED=y 118b10b4515SJerome Forissier _make CFG_TA_GPROF_SUPPORT=y CFG_FTRACE_SUPPORT=y CFG_SYSCALL_FTRACE=y CFG_ULIBS_MCOUNT=y 119b10b4515SJerome Forissier _make CFG_SECURE_DATA_PATH=y 120b10b4515SJerome Forissier _make CFG_REE_FS_TA_BUFFERED=y 121b10b4515SJerome Forissier _make CFG_WITH_USER_TA=n 1224dc19277SClement Faure _make CFG_{ATTESTATION,DEVICE_ENUM,RTC,SCMI,SECSTOR_TA_MGT}_PTA=y CFG_WITH_STATS=y CFG_TA_STATS=y 123b10b4515SJerome Forissier _make PLATFORM=vexpress-qemu_armv8a 124b10b4515SJerome Forissier _make PLATFORM=vexpress-qemu_armv8a COMPILER=clang 125b10b4515SJerome Forissier _make PLATFORM=vexpress-qemu_armv8a CFG_TEE_CORE_LOG_LEVEL=0 CFG_TEE_CORE_DEBUG=n CFG_TEE_TA_LOG_LEVEL=0 CFG_DEBUG_INFO=n 1269655e48eSClement Faure _make PLATFORM=vexpress-qemu_armv8a CFG_TEE_CORE_LOG_LEVEL=4 CFG_TEE_CORE_DEBUG=y CFG_TEE_TA_LOG_LEVEL=4 CFG_CC_OPT_LEVEL=0 CFG_DEBUG_INFO=y 127b10b4515SJerome Forissier _make PLATFORM=vexpress-qemu_armv8a CFG_WITH_PAGER=y 128b10b4515SJerome Forissier _make PLATFORM=vexpress-qemu_armv8a CFG_FTRACE_SUPPORT=y CFG_ULIBS_MCOUNT=y CFG_ULIBS_SHARED=y 129b10b4515SJerome Forissier _make PLATFORM=vexpress-qemu_armv8a CFG_TA_GPROF_SUPPORT=y CFG_FTRACE_SUPPORT=y CFG_SYSCALL_FTRACE=y CFG_ULIBS_MCOUNT=y 130b76b2296SJerome Forissier _make PLATFORM=vexpress-qemu_armv8a CFG_NS_VIRTUALIZATION=y 1319cded664SJens Wiklander _make PLATFORM=vexpress-qemu_armv8a CFG_CORE_PREALLOC_EL0_TBLS=y 1328bf10029SRaymond Mao _make PLATFORM=vexpress-qemu_armv8a CFG_TRANSFER_LIST=y CFG_MAP_EXT_DT_SECURE=y 133b10b4515SJerome Forissier _make PLATFORM=vexpress-qemu_armv8a CFG_CORE_SEL1_SPMC=y 1343ce90223SJens Wiklander _make PLATFORM=vexpress-qemu_armv8a CFG_CORE_SEL2_SPMC=y CFG_CORE_PHYS_RELOCATABLE=y CFG_TZDRAM_START=0x0d304000 CFG_TZDRAM_SIZE=0x00cfc000 1354dc19277SClement Faure _make PLATFORM=vexpress-qemu_armv8a CFG_{ATTESTATION,DEVICE_ENUM,RTC,SCMI,SECSTOR_TA_MGT}_PTA=y CFG_WITH_STATS=y CFG_TA_STATS=y 136faef0dd6SJens Wiklander _make PLATFORM=vexpress-qemu_armv8a CFG_CORE_SEL1_SPMC=y CFG_NS_VIRTUALIZATION=y 137b10b4515SJerome Forissier dd if=/dev/urandom of=BL32_AP_MM.fd bs=2621440 count=1 && _make PLATFORM=vexpress-qemu_armv8a CFG_STMM_PATH=BL32_AP_MM.fd CFG_RPMB_FS=y CFG_CORE_HEAP_SIZE=524288 CFG_TEE_RAM_VA_SIZE=0x00400000 1385948737dSEtienne Carriere if [ -d $HOME/scp-firmware ]; then _make PLATFORM=vexpress-qemu_armv8a CFG_SCMI_SCPFW=y CFG_SCP_FIRMWARE=$HOME/scp-firmware; fi 139b10b4515SJerome Forissier _make PLATFORM=stm-b2260 140b10b4515SJerome Forissier _make PLATFORM=stm-cannes 141b10b4515SJerome Forissier _make PLATFORM=stm32mp1 142d07ddf93SEtienne Carriere _make PLATFORM=stm32mp1-135F_DK CFG_DRIVERS_CLK_PRINT_TREE=y CFG_DRIVERS_REGULATOR_PRINT_TREE=y 143f11639b2SEtienne Carriere _make PLATFORM=stm32mp1-135F_DK COMPILER=clang 1445948737dSEtienne Carriere if [ -d $HOME/scp-firmware ]; then _make PLATFORM=stm32mp1-157C_DK2 CFG_SCMI_SCPFW=y CFG_SCP_FIRMWARE=$HOME/scp-firmware; fi 14576438b80SGatien Chevallier _make PLATFORM=stm32mp2 146b10b4515SJerome Forissier _make PLATFORM=vexpress-fvp 147b10b4515SJerome Forissier _make PLATFORM=vexpress-fvp CFG_ARM64_core=y 148b10b4515SJerome Forissier _make PLATFORM=vexpress-fvp CFG_ARM64_core=y CFG_CORE_SEL1_SPMC=y CFG_SECURE_PARTITION=y 1495948737dSEtienne Carriere if [ -d $HOME/scp-firmware ]; then _make PLATFORM=vexpress-fvp CFG_SCMI_SCPFW=y CFG_SCP_FIRMWARE=$HOME/scp-firmware; fi 150b10b4515SJerome Forissier _make PLATFORM=vexpress-juno 151b10b4515SJerome Forissier _make PLATFORM=vexpress-juno CFG_ARM64_core=y 152b10b4515SJerome Forissier _make PLATFORM=hikey 153b10b4515SJerome Forissier _make PLATFORM=hikey CFG_ARM64_core=y 154b10b4515SJerome Forissier _make PLATFORM=mediatek-mt8173 155b10b4515SJerome Forissier _make PLATFORM=mediatek-mt8175 156b10b4515SJerome Forissier _make PLATFORM=mediatek-mt8183 157b10b4515SJerome Forissier _make PLATFORM=mediatek-mt8516 158b10b4515SJerome Forissier _make PLATFORM=imx-mx6ulevk 159b10b4515SJerome Forissier _make PLATFORM=imx-mx6ulevk CFG_NXP_CAAM=y CFG_CRYPTO_DRIVER=y 160b10b4515SJerome Forissier _make PLATFORM=imx-mx6ul9x9evk 161b10b4515SJerome Forissier _make PLATFORM=imx-mx6ullevk CFG_WITH_SOFTWARE_PRNG=n CFG_IMX_RNGB=y 162cf4c4622SJorge Ramirez-Ortiz if [ -d $HOME/se050/plug-and-trust ]; then _make PLATFORM=imx-mx6ullevk CFG_NXP_SE05X=y CFG_IMX_I2C=y CFG_STACK_{THREAD,TMP}_EXTRA=8192 CFG_CRYPTO_DRV_{CIPHER,ACIPHER}=y CFG_WITH_SOFTWARE_PRNG=n CFG_NXP_SE05X_{DIEID,RNG,RSA,ECC,CTR}_DRV=y CFG_NXP_SE05X_RSA_DRV_FALLBACK=y CFG_NXP_SE05X_ECC_DRV_FALLBACK=y CFG_NXP_SE05X_PLUG_AND_TRUST=$HOME/se050/plug-and-trust ; fi 163b10b4515SJerome Forissier _make PLATFORM=imx-mx6ulzevk 164b10b4515SJerome Forissier _make PLATFORM=imx-mx6slevk 165b10b4515SJerome Forissier _make PLATFORM=imx-mx6sllevk 166b10b4515SJerome Forissier _make PLATFORM=imx-mx6sxsabreauto 167b10b4515SJerome Forissier _make PLATFORM=imx-mx6sxsabresd 168b10b4515SJerome Forissier _make PLATFORM=imx-mx6sxsabresd CFG_NXP_CAAM=y CFG_CRYPTO_DRIVER=y 169b10b4515SJerome Forissier _make PLATFORM=imx-mx6solosabresd 170b10b4515SJerome Forissier _make PLATFORM=imx-mx6solosabreauto 171b10b4515SJerome Forissier _make PLATFORM=imx-mx6sxsabreauto 172b10b4515SJerome Forissier _make PLATFORM=imx-mx6qsabrelite 173b10b4515SJerome Forissier _make PLATFORM=imx-mx6qsabresd 174b10b4515SJerome Forissier _make PLATFORM=imx-mx6qsabresd CFG_RPMB_FS=y 175b10b4515SJerome Forissier _make PLATFORM=imx-mx6qsabreauto 176b10b4515SJerome Forissier _make PLATFORM=imx-mx6qsabreauto CFG_NXP_CAAM=y CFG_CRYPTO_DRIVER=y 177b10b4515SJerome Forissier _make PLATFORM=imx-mx6qpsabreauto 178b10b4515SJerome Forissier _make PLATFORM=imx-mx6qpsabresd 179b10b4515SJerome Forissier _make PLATFORM=imx-mx6dlsabresd 180b10b4515SJerome Forissier _make PLATFORM=imx-mx6dlsabreauto 181b10b4515SJerome Forissier _make PLATFORM=imx-mx6dapalis 182b10b4515SJerome Forissier _make PLATFORM=imx-mx6qapalis 183b10b4515SJerome Forissier _make PLATFORM=imx-mx7dsabresd 184b10b4515SJerome Forissier _make PLATFORM=imx-mx7dsabresd CFG_NXP_CAAM=y CFG_CRYPTO_DRIVER=y 185b10b4515SJerome Forissier _make PLATFORM=imx-mx7ulpevk 186b10b4515SJerome Forissier _make PLATFORM=imx-mx8mmevk 187b10b4515SJerome Forissier _make PLATFORM=imx-mx8mmevk CFG_NXP_CAAM=y CFG_CRYPTO_DRIVER=y 188cf4c4622SJorge Ramirez-Ortiz if [ -d $HOME/se050/plug-and-trust ]; then _make PLATFORM=imx-mx8mmevk CFG_NXP_CAAM=y CFG_NXP_CAAM_RNG_DRV=y CFG_NXP_SE05X=y CFG_IMX_I2C=y CFG_STACK_{THREAD,TMP}_EXTRA=8192 CFG_CRYPTO_DRV_{CIPHER,ACIPHER}=y CFG_NXP_SE05X_RNG_DRV=n CFG_WITH_SOFTWARE_PRNG=n CFG_NXP_SE05X_{DIEID,RSA,ECC,CTR}_DRV=y CFG_NXP_SE05X_RSA_DRV_FALLBACK=y CFG_NXP_SE05X_ECC_DRV_FALLBACK=y CFG_NXP_SE05X_PLUG_AND_TRUST=$HOME/se050/plug-and-trust ; fi 189b10b4515SJerome Forissier _make PLATFORM=imx-mx8mnevk 190b10b4515SJerome Forissier _make PLATFORM=imx-mx8mqevk 191b10b4515SJerome Forissier _make PLATFORM=imx-mx8mpevk 192b10b4515SJerome Forissier _make PLATFORM=imx-mx8qxpmek 19337f820d6SClement Faure _make PLATFORM=imx-mx8dxmek 194b10b4515SJerome Forissier _make PLATFORM=imx-mx8qmmek 195b10b4515SJerome Forissier _make PLATFORM=imx-mx8dxlevk 196b10b4515SJerome Forissier _make PLATFORM=imx-mx8ulpevk 197b10b4515SJerome Forissier _make PLATFORM=imx-mx8ulpevk CFG_NXP_CAAM=y CFG_CRYPTO_DRIVER=y 198cb34c33eSClement Faure _make PLATFORM=imx-mx93evk 199b10b4515SJerome Forissier _make PLATFORM=k3-j721e 200b10b4515SJerome Forissier _make PLATFORM=k3-j721e CFG_ARM64_core=y 2010b28c65fSJayesh Choudhary _make PLATFORM=k3-j784s4 2020b28c65fSJayesh Choudhary _make PLATFORM=k3-j784s4 CFG_ARM64_core=y 203b10b4515SJerome Forissier _make PLATFORM=k3-am65x 204b10b4515SJerome Forissier _make PLATFORM=k3-am65x CFG_ARM64_core=y 205b10b4515SJerome Forissier _make PLATFORM=k3-am64x 206b10b4515SJerome Forissier _make PLATFORM=k3-am64x CFG_ARM64_core=y 207b10b4515SJerome Forissier _make PLATFORM=k3-am62x 208b10b4515SJerome Forissier _make PLATFORM=k3-am62x CFG_ARM64_core=y 209b10b4515SJerome Forissier _make PLATFORM=ti-dra7xx out/core/tee{,-pager,-pageable}.bin 210b10b4515SJerome Forissier _make PLATFORM=ti-am57xx 211b10b4515SJerome Forissier _make PLATFORM=ti-am43xx 212b10b4515SJerome Forissier _make PLATFORM=sprd-sc9860 213b10b4515SJerome Forissier _make PLATFORM=sprd-sc9860 CFG_ARM64_core=y 214b10b4515SJerome Forissier _make PLATFORM=ls-ls1043ardb 215b10b4515SJerome Forissier _make PLATFORM=ls-ls1046ardb 216b10b4515SJerome Forissier _make PLATFORM=ls-ls1012ardb 217b10b4515SJerome Forissier _make PLATFORM=ls-ls1028ardb 218b10b4515SJerome Forissier _make PLATFORM=ls-ls1088ardb 219b10b4515SJerome Forissier _make PLATFORM=ls-ls2088ardb 220b10b4515SJerome Forissier _make PLATFORM=ls-lx2160ardb 221b10b4515SJerome Forissier _make PLATFORM=ls-lx2160aqds 222b10b4515SJerome Forissier _make PLATFORM=zynq7k-zc702 223b10b4515SJerome Forissier _make PLATFORM=zynqmp-zcu102 224b10b4515SJerome Forissier _make PLATFORM=zynqmp-zcu102 CFG_ARM64_core=y 2255ba2acecSVesa Jääskeläinen _make PLATFORM=zynqmp-zcu102 CFG_ARM64_core=y CFG_WITH_SOFTWARE_PRNG=n CFG_XIPHERA_TRNG=y CFG_ZYNQMP_HUK=y 226b10b4515SJerome Forissier _make PLATFORM=d02 227b10b4515SJerome Forissier _make PLATFORM=d02 CFG_ARM64_core=y 228b10b4515SJerome Forissier _make PLATFORM=rcar 229b10b4515SJerome Forissier _make PLATFORM=rzg 230b10b4515SJerome Forissier _make PLATFORM=rzg CFG_ARM64_core=y 231b10b4515SJerome Forissier _make PLATFORM=rpi3 232b10b4515SJerome Forissier _make PLATFORM=rpi3 CFG_ARM64_core=y 233b10b4515SJerome Forissier _make PLATFORM=hikey-hikey960 234b10b4515SJerome Forissier _make PLATFORM=hikey-hikey960 COMPILER=clang 235b10b4515SJerome Forissier _make PLATFORM=hikey-hikey960 CFG_ARM64_core=y 236b10b4515SJerome Forissier _make PLATFORM=hikey-hikey960 CFG_ARM64_core=y COMPILER=clang 237b10b4515SJerome Forissier _make PLATFORM=hikey-hikey960 CFG_SECURE_DATA_PATH=n 238b10b4515SJerome Forissier _make PLATFORM=poplar 239b10b4515SJerome Forissier _make PLATFORM=poplar CFG_ARM64_core=y 240b10b4515SJerome Forissier _make PLATFORM=rockchip-rk322x 241b10b4515SJerome Forissier _make PLATFORM=rockchip-rk3399 242b10b4515SJerome Forissier _make PLATFORM=sam 243de80c329SThomas Perrot _make PLATFORM=sam-sama5d2_xplained 2444cc1b64dSThomas Perrot _make PLATFORM=sam-sama5d27_som1_ek 2456807d41fSEtienne Carriere _make PLATFORM=sam-sama5d27_wlsom1_ek 246b10b4515SJerome Forissier _make PLATFORM=marvell-armada7k8k 247b10b4515SJerome Forissier _make PLATFORM=marvell-armada3700 248b10b4515SJerome Forissier _make PLATFORM=marvell-otx2t96 249b10b4515SJerome Forissier _make PLATFORM=marvell-otx2f95 250b10b4515SJerome Forissier _make PLATFORM=marvell-otx2t98 2519115cdfaSGowthami _make PLATFORM=marvell-cn10ka 2529115cdfaSGowthami _make PLATFORM=marvell-cn10kb 2539115cdfaSGowthami _make PLATFORM=marvell-cnf10ka 2549115cdfaSGowthami _make PLATFORM=marvell-cnf10kb 255b10b4515SJerome Forissier _make PLATFORM=synquacer 256b10b4515SJerome Forissier _make PLATFORM=sunxi-bpi_zero 257b10b4515SJerome Forissier _make PLATFORM=sunxi-sun50i_a64 258b10b4515SJerome Forissier _make PLATFORM=bcm-ns3 CFG_ARM64_core=y 259b10b4515SJerome Forissier _make PLATFORM=hisilicon-hi3519av100_demo 260b10b4515SJerome Forissier _make PLATFORM=amlogic 261b10b4515SJerome Forissier _make PLATFORM=rzn1 262d8d2e5e6SJorge Ramirez-Ortiz _make PLATFORM=versal CFG_VERSAL_FPGA_DDR_ADDR=0x40000000 26342f66171SVishnu Banavath _make PLATFORM=corstone1000 26428a029b5SMargarita Glushkin _make PLATFORM=nuvoton 265c25f5007Sloubaihui _make PLATFORM=d06 266*a8cfcdf2Sloubaihui _make PLATFORM=d06 CFG_HISILICON_ACC_V3=y 267b10b4515SJerome Forissier 26827acbe2bSJerome Forissier export ARCH=riscv 26927acbe2bSJerome Forissier unset CROSS_COMPILE32 27027acbe2bSJerome Forissier export CROSS_COMPILE64="ccache riscv64-linux-gnu-" 27127acbe2bSJerome Forissier 27227acbe2bSJerome Forissier _make PLATFORM=virt 27327acbe2bSJerome Forissier 274b10b4515SJerome Forissier QEMUv8_check: 275b10b4515SJerome Forissier name: make check (QEMUv8) 276b10b4515SJerome Forissier runs-on: ubuntu-latest 2774f00b5beSJerome Forissier container: jforissier/optee_os_ci:qemu_check 278b10b4515SJerome Forissier steps: 279fa195005SJerome Forissier - name: Remove /__t/* 280fa195005SJerome Forissier run: rm -rf /__t/* 281b10b4515SJerome Forissier - name: Restore build cache 282b10b4515SJerome Forissier uses: actions/cache@v3 283b10b4515SJerome Forissier with: 284b10b4515SJerome Forissier path: /github/home/.cache/ccache 285b10b4515SJerome Forissier key: qemuv8_check-cache-${{ github.sha }} 286b10b4515SJerome Forissier restore-keys: | 287b10b4515SJerome Forissier qemuv8_check-cache- 288b10b4515SJerome Forissier - name: Checkout 289c847c2c9SJerome Forissier uses: actions/checkout@v4 290b10b4515SJerome Forissier - shell: bash 291b10b4515SJerome Forissier run: | 292b10b4515SJerome Forissier # make check task 293baa05d63SJerome Forissier set -e -v 294b10b4515SJerome Forissier export LC_ALL=C 295f8ea228aSJerome Forissier export BR2_CCACHE_DIR=/github/home/.cache/ccache 29670a5b401SJerome Forissier export CFG_TEE_CORE_LOG_LEVEL=0 29740be56c9SJerome Forissier export CFG_ATTESTATION_PTA=y 29840be56c9SJerome Forissier export CFG_ATTESTATION_PTA_KEY_SIZE=1024 299ee726ae9SJerome Forissier OPTEE_OS_TO_TEST=$(pwd) 3005f1d31ffSJerome Forissier cd .. 3015f1d31ffSJerome Forissier TOP=$(pwd)/optee_repo_qemu_v8 3024f00b5beSJerome Forissier /root/get_optee.sh qemu_v8 ${TOP} 3035f1d31ffSJerome Forissier mv ${TOP}/optee_os ${TOP}/optee_os_old 304ee726ae9SJerome Forissier ln -s ${OPTEE_OS_TO_TEST} ${TOP}/optee_os 3055f1d31ffSJerome Forissier cd ${TOP}/build 306b10b4515SJerome Forissier 3075f1d31ffSJerome Forissier make -j$(nproc) check 3085f1d31ffSJerome Forissier make -j$(nproc) check CFG_CRYPTO_WITH_CE82=y 309ce44b9dfSJerome Forissier # Rust is disabled because signature_verification-rs hangs with this OP-TEE configuration 310ce44b9dfSJerome Forissier make -j$(nproc) check CFG_FTRACE_SUPPORT=y CFG_SYSCALL_FTRACE=y XTEST_ARGS=regression_1001 RUST_ENABLE=n 311a012b992SSeonghyun Park make -j$(nproc) check CFG_PAN=y 3126d7d9de3SJerome Forissier make -j$(nproc) check CFG_WITH_PAGER=y 313b10b4515SJerome Forissier 31411af44c2SJerome Forissier QEMUv8_Xen_check: 31511af44c2SJerome Forissier name: make check (QEMUv8, Xen) 31611af44c2SJerome Forissier runs-on: ubuntu-latest 3174f00b5beSJerome Forissier container: jforissier/optee_os_ci:qemu_check 31811af44c2SJerome Forissier steps: 319b8f45155SJerome Forissier - name: Remove /__t/* 320b8f45155SJerome Forissier run: rm -rf /__t/* 32111af44c2SJerome Forissier - name: Restore build cache 32211af44c2SJerome Forissier uses: actions/cache@v3 32311af44c2SJerome Forissier with: 32411af44c2SJerome Forissier path: /github/home/.cache/ccache 32511af44c2SJerome Forissier key: qemuv8_xen_check-cache-${{ github.sha }} 32611af44c2SJerome Forissier restore-keys: | 32711af44c2SJerome Forissier qemuv8_xen_check-cache- 32811af44c2SJerome Forissier - name: Checkout 329c847c2c9SJerome Forissier uses: actions/checkout@v4 33011af44c2SJerome Forissier - shell: bash 33111af44c2SJerome Forissier run: | 33211af44c2SJerome Forissier # make check task 333baa05d63SJerome Forissier set -e -v 33411af44c2SJerome Forissier export LC_ALL=C 33511af44c2SJerome Forissier export CFG_TEE_CORE_LOG_LEVEL=0 336f8ea228aSJerome Forissier export BR2_CCACHE_DIR=/github/home/.cache/ccache 337ee726ae9SJerome Forissier OPTEE_OS_TO_TEST=$(pwd) 3385f1d31ffSJerome Forissier cd .. 3395f1d31ffSJerome Forissier TOP=$(pwd)/optee_repo_qemu_v8 3404f00b5beSJerome Forissier /root/get_optee.sh qemu_v8 ${TOP} 3415f1d31ffSJerome Forissier mv ${TOP}/optee_os ${TOP}/optee_os_old 342ee726ae9SJerome Forissier ln -s ${OPTEE_OS_TO_TEST} ${TOP}/optee_os 3435f1d31ffSJerome Forissier cd ${TOP}/build 34411af44c2SJerome Forissier 3455f1d31ffSJerome Forissier make -j$(nproc) check XEN_BOOT=y 346b10b4515SJerome Forissier 3473427eb2aSJens Wiklander QEMUv8_Hafnium_check: 3483427eb2aSJens Wiklander name: make check (QEMUv8, Hafnium) 3493427eb2aSJens Wiklander runs-on: ubuntu-latest 3504f00b5beSJerome Forissier container: jforissier/optee_os_ci:qemu_check 3513427eb2aSJens Wiklander steps: 352a03aafedSJerome Forissier - name: Remove /__t/* 353a03aafedSJerome Forissier run: rm -rf /__t/* 3543427eb2aSJens Wiklander - name: Restore build cache 3553427eb2aSJens Wiklander uses: actions/cache@v3 3563427eb2aSJens Wiklander with: 3573427eb2aSJens Wiklander path: /github/home/.cache/ccache 3583427eb2aSJens Wiklander key: qemuv8_hafnium_check-cache-${{ github.sha }} 3593427eb2aSJens Wiklander restore-keys: | 3603427eb2aSJens Wiklander qemuv8_hafnium_check-cache- 3613427eb2aSJens Wiklander - name: Checkout 362c847c2c9SJerome Forissier uses: actions/checkout@v4 3633427eb2aSJens Wiklander - shell: bash 3643427eb2aSJens Wiklander run: | 3653427eb2aSJens Wiklander # make check task 3663427eb2aSJens Wiklander set -e -v 3673427eb2aSJens Wiklander export LC_ALL=C 3683427eb2aSJens Wiklander export CFG_TEE_CORE_LOG_LEVEL=0 3693427eb2aSJens Wiklander export BR2_CCACHE_DIR=/github/home/.cache/ccache 370ee726ae9SJerome Forissier OPTEE_OS_TO_TEST=$(pwd) 3713427eb2aSJens Wiklander cd .. 3723427eb2aSJens Wiklander TOP=$(pwd)/optee_repo_qemu_v8 3734f00b5beSJerome Forissier /root/get_optee.sh qemu_v8 ${TOP} 3743427eb2aSJens Wiklander mv ${TOP}/optee_os ${TOP}/optee_os_old 375ee726ae9SJerome Forissier ln -s ${OPTEE_OS_TO_TEST} ${TOP}/optee_os 3763427eb2aSJens Wiklander cd ${TOP}/build 3773427eb2aSJens Wiklander 3783427eb2aSJens Wiklander make -j$(nproc) check SPMC_AT_EL=2 3793427eb2aSJens Wiklander 38029711e3bSJerome Forissier QEMUv8_check_BTI_MTE_PAC: 38129711e3bSJerome Forissier name: make check (QEMUv8, BTI+MTE+PAC) 38229711e3bSJerome Forissier runs-on: ubuntu-latest 3834f00b5beSJerome Forissier container: jforissier/optee_os_ci:qemu_check 38429711e3bSJerome Forissier steps: 385fa195005SJerome Forissier - name: Remove /__t/* 386fa195005SJerome Forissier run: rm -rf /__t/* 38729711e3bSJerome Forissier - name: Restore build cache 38829711e3bSJerome Forissier uses: actions/cache@v3 38929711e3bSJerome Forissier with: 39029711e3bSJerome Forissier path: /github/home/.cache/ccache 39129711e3bSJerome Forissier key: qemuv8_check_bti_mte_pac-cache-${{ github.sha }} 39229711e3bSJerome Forissier restore-keys: | 39329711e3bSJerome Forissier qemuv8_check_bti_mte_pac-cache- 39429711e3bSJerome Forissier - name: Checkout 395c847c2c9SJerome Forissier uses: actions/checkout@v4 39629711e3bSJerome Forissier - shell: bash 39729711e3bSJerome Forissier run: | 39829711e3bSJerome Forissier # make check task 39929711e3bSJerome Forissier set -e -v 40029711e3bSJerome Forissier export LC_ALL=C 40129711e3bSJerome Forissier # The BTI-enabled toolchain is aarch64-unknown-linux-uclibc-gcc in /usr/local/bin 40229711e3bSJerome Forissier export PATH=/usr/local/bin:$PATH 40329711e3bSJerome Forissier export AARCH64_CROSS_COMPILE=aarch64-unknown-linux-uclibc- 40429711e3bSJerome Forissier export BR2_CCACHE_DIR=/github/home/.cache/ccache 40529711e3bSJerome Forissier export CFG_TEE_CORE_LOG_LEVEL=0 40629711e3bSJerome Forissier export CFG_USER_TA_TARGETS=ta_arm64 407ee726ae9SJerome Forissier OPTEE_OS_TO_TEST=$(pwd) 4085f1d31ffSJerome Forissier cd .. 4095f1d31ffSJerome Forissier TOP=$(pwd)/optee_repo_qemu_v8 4105f1d31ffSJerome Forissier # TF-A v2.6 fails to build with the above toolchain so override it 4115f1d31ffSJerome Forissier export TF_A_EXPORTS="CROSS_COMPILE=${TOP}/toolchains/aarch64/bin/aarch64-linux-gnu-" 4124f00b5beSJerome Forissier /root/get_optee.sh qemu_v8 ${TOP} 41329711e3bSJerome Forissier # QEMU v7.2.0 has an issue with MTE 41429711e3bSJerome Forissier # https://github.com/OP-TEE/optee_os/issues/5759#issuecomment-1380590951 4155f1d31ffSJerome Forissier cd ${TOP}/qemu && git fetch github && git checkout 13356edb87 4165f1d31ffSJerome Forissier mv ${TOP}/optee_os ${TOP}/optee_os_old 417ee726ae9SJerome Forissier ln -s ${OPTEE_OS_TO_TEST} ${TOP}/optee_os 4185f1d31ffSJerome Forissier cd ${TOP}/build 41929711e3bSJerome Forissier 42029711e3bSJerome Forissier # xtest 1031 is excluded because 1031.4 (C++ exception from shared library) fails with this cross-compiler 421ce44b9dfSJerome Forissier # Rust is disabled because of a link error in the examples with this toolchain 422ce44b9dfSJerome Forissier make -j$(nproc) CFG_CORE_BTI=y CFG_TA_BTI=y MEMTAG=y PAUTH=y RUST_ENABLE=n XTEST_ARGS="-x 1031" check 423