From 052feec33f87c4ac969997460c39d78d96fedb1c Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Wed, 8 Apr 2026 11:16:59 +0200 Subject: [PATCH] CI: github: add the architecture to the cache key for vtest2 ARM runners can't use the same build as the other x86_64 ones, add the architecture to the cache key so it caches and gets the right one. --- .github/actions/setup-vtest/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-vtest/action.yml b/.github/actions/setup-vtest/action.yml index c487ba504..2b986ae74 100644 --- a/.github/actions/setup-vtest/action.yml +++ b/.github/actions/setup-vtest/action.yml @@ -31,7 +31,7 @@ runs: uses: actions/cache@v5 with: path: ${{ github.workspace }}/vtest - key: vtest-${{ runner.os }}-${{ steps.vtest-sha.outputs.sha }} + key: vtest-${{ runner.os }}-${{ runner.arch }}-${{ steps.vtest-sha.outputs.sha }} - name: Install VTest if: steps.cache-vtest.outputs.cache-hit != 'true'