From 945e4d2814edcc4819e8b0d37d95964547fd1100 Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Fri, 24 May 2024 23:06:34 +0200 Subject: [PATCH] wip --- .github/workflows/osrm-backend.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/osrm-backend.yml b/.github/workflows/osrm-backend.yml index 48ea39f07..7324cd0cb 100644 --- a/.github/workflows/osrm-backend.yml +++ b/.github/workflows/osrm-backend.yml @@ -402,16 +402,16 @@ jobs: if: runner.os == 'Linux' && matrix.ENABLE_CONAN != 'ON' run: sudo chown root /bin/tar && sudo chmod u+s /bin/tar - name: Cache Boost - if: steps.cache-boost.outputs.cache-hit != 'true' && runner.os == 'Linux' && matrix.ENABLE_CONAN != 'ON' + if: runner.os == 'Linux' && matrix.ENABLE_CONAN != 'ON' id: cache-boost uses: actions/cache@v4 with: path: | /usr/local/include/boost /usr/local/lib/libboost* - key: v1-boost-${{ runner.os }}-${{ runner.arch }} + key: v1-boost-${{ runner.os }}-${{ runner.arch }}-${{ matrix.run-on }} restore-keys: | - v1-boost-${{ runner.os }}-${{ runner.arch }} + v1-boost-${{ runner.os }}-${{ runner.arch }}-${{ matrix.run-on }} - name: Install Boost if: steps.cache-boost.outputs.cache-hit != 'true' && runner.os == 'Linux' && matrix.ENABLE_CONAN != 'ON'