From 0bdbc9e4122af00132e1a5b70e99d36ef406a764 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Cab=C3=A9?= Date: Tue, 17 Jun 2025 11:48:41 +0200 Subject: [PATCH] ci: twister: install Python dependencies in twister-build step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This ensures we catch up on latest requirements in case Docker image is lagging behind. Signed-off-by: Benjamin Cabé --- .github/workflows/twister.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/twister.yaml b/.github/workflows/twister.yaml index bf9bb2801b2..333ef375553 100644 --- a/.github/workflows/twister.yaml +++ b/.github/workflows/twister.yaml @@ -210,6 +210,10 @@ jobs: echo "github.base_ref: ${{ github.base_ref }}" echo "github.ref_name: ${{ github.ref_name }}" + - name: Install Python packages + run: | + pip install -r scripts/requirements-actions.txt --require-hashes + - name: Set up ccache run: | mkdir -p ${CCACHE_DIR}