From: William Lallemand Date: Wed, 8 Apr 2026 09:16:59 +0000 (+0200) Subject: CI: github: add the architecture to the cache key for vtest2 X-Git-Tag: v3.4-dev9~132 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=052feec33f87c4ac969997460c39d78d96fedb1c;p=haproxy.git 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. --- 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'