From 1188e423c514d5a7acdd1a609b82b01e6447b751 Mon Sep 17 00:00:00 2001 From: Nicola Mazzucato Date: Fri, 18 Aug 2023 12:36:29 +0100 Subject: [PATCH] ci.yml: Reintroduce build of libscmi-server A previous patch temporarily removed the libscmi-server build. Now that the related PR in SCP-firmware has been merged, reintroduce the build step. Link: https://github.com/ARM-software/SCP-firmware/pull/812 Link: https://github.com/OP-TEE/optee_os/pull/6190 Reviewed-by: Jerome Forissier Reviewed-by: Etienne Carriere Signed-off-by: Nicola Mazzucato --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b9d4c66884..22d9b77d17b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,8 +82,7 @@ jobs: function _make() { make -j$(nproc) -s O=out $*; } 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); } - #Temporarily disabled - function download_scp_firmware() { echo "download_scp_firmware skipped"; } + function download_scp_firmware() { git clone --single-branch https://github.com/ARM-software/SCP-firmware.git $HOME/scp-firmware || echo Nervermind; } ccache -s -v download_plug_and_trust