From f74bea8f31da01693077834dfd49e09925426d49 Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Wed, 22 Nov 2023 17:41:43 +0100 Subject: [PATCH] ci: sync SCP-firmware on v2.13.0 release tag Synchronize SCP-firmware Git repository revision on v2.13.0 release tag to avoid issues with latest merged changes in SCP-firmware that OP-TEE OS may not be compliant with. Signed-off-by: Etienne Carriere --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 665b941b826..91fe5f9986c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,7 +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); } - function download_scp_firmware() { git clone --single-branch https://github.com/ARM-software/SCP-firmware.git $HOME/scp-firmware || echo Nervermind; } + function download_scp_firmware() { { git clone --single-branch https://github.com/ARM-software/SCP-firmware.git $HOME/scp-firmware && git -C $HOME/scp-firmware checkout v2.13.0; } || echo Nervermind; } ccache -s -v download_plug_and_trust