From 02ac65574a6b9b97e6720dd81257ea1542930e58 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 24 Apr 2021 11:43:04 +0300 Subject: workflows: fix cache path Forgot to switch to $RUNNER_WORKSPACE/build in the workflows also. Also, the usual crap with the cache action made me change the cache keys, or it would be restore in the wrong location for some reason. --- .github/workflows/ci_travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows/ci_travis.yml') diff --git a/.github/workflows/ci_travis.yml b/.github/workflows/ci_travis.yml index 3dc1da5..dc1f370 100644 --- a/.github/workflows/ci_travis.yml +++ b/.github/workflows/ci_travis.yml @@ -45,8 +45,8 @@ jobs: - name: Cache Boost uses: actions/cache@v2.1.4 with: - path: '${{ env.HOME }}/boost_*.tar.gz' - key: 'boost-${{ env.boost_version }}' + path: '${{ github.workspace }}/examples/build/boost_*.tar.gz' + key: 'boost_${{ env.BOOST_VERSION }}' - name: Build Boost run: python -m project.ci.boost --hint Travis -- --with-filesystem -- cgit v1.2.3