From db195e4efcf698393fce4db93758c2879e563766 Mon Sep 17 00:00:00 2001 From: James Wainwright Date: Mon, 10 Nov 2025 13:58:05 +0000 Subject: [PATCH] [ot] .github/workflows: eg_regression: fetch all OT commits OpenTitan has a rule which searches an online cache for an FPGA bitstream close to the current commit. For this to work, we need all commits of the OpenTitan repository fetched. GitHub does a shallow fetch by default. This commit fetches all commits until we can work out why sometimes the bitstream rule is being run for our QEMU regressions. Signed-off-by: James Wainwright --- .github/workflows/eg_regression.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/eg_regression.yml b/.github/workflows/eg_regression.yml index 85e3927d001ea..0080870ede90f 100644 --- a/.github/workflows/eg_regression.yml +++ b/.github/workflows/eg_regression.yml @@ -39,6 +39,7 @@ jobs: with: repository: ${{ inputs.opentitan_repo || 'lowRISC/opentitan' }} ref: ${{ inputs.opentitan_ref || 'earlgrey_1.0.0' }} + fetch-depth: 0 # fetch all commits to avoid bug with bitstream rule - name: Prepare OpenTitan environment uses: ./.github/actions/prepare-env