From b6213968dedb54dcefeece862300ca9d4967d566 Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Fri, 18 Jul 2025 09:26:13 +0200 Subject: [PATCH] GHA: Fix Git-LFS checkout for valgrind tests --- .github/workflows/test_valgrind.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test_valgrind.yml b/.github/workflows/test_valgrind.yml index 86ba10097a..e61ed5533d 100644 --- a/.github/workflows/test_valgrind.yml +++ b/.github/workflows/test_valgrind.yml @@ -5,6 +5,7 @@ on: - python/tests/valgrind-python.supp - scripts/run-valgrind-cpp.sh - scripts/run-valgrind-py.sh + - .github/workflows/test_valgrind.yml pull_request: branches: - update_valgrind_supp @@ -39,10 +40,13 @@ jobs: uses: actions/checkout@v4 with: ref: main + lfs: true - name: Checkout code (manual, push, pull request) if: github.event_name != 'schedule' uses: actions/checkout@v4 + with: + lfs: true - run: git fetch --prune --unshallow @@ -86,6 +90,8 @@ jobs: python-version: ${{ matrix.python-version }} - uses: actions/checkout@v4 + with: + lfs: true - run: git fetch --prune --unshallow - name: Install apt dependencies