From b42be232d690894c82d4959ffa60aecb92b60a1b Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Fri, 12 Nov 2021 19:30:55 +0100 Subject: [PATCH] ci: scons save condition was flipped old-commit-hash: 579994ced9751df2616aa1a62ab3b8a69e811fca --- .github/workflows/selfdrive_tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/selfdrive_tests.yaml b/.github/workflows/selfdrive_tests.yaml index 8eafe11077..922031a1d2 100644 --- a/.github/workflows/selfdrive_tests.yaml +++ b/.github/workflows/selfdrive_tests.yaml @@ -159,7 +159,7 @@ jobs: # TODO: Change the version to the released version when https://github.com/actions/cache/pull/489 (or 571) is merged. uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b env: - CACHE_SKIP_SAVE: ${{ github.ref == 'refs/heads/master' && github.repository == 'commaai/openpilot' }} + CACHE_SKIP_SAVE: ${{ github.ref != 'refs/heads/master' || github.repository != 'commaai/openpilot' }} with: path: /tmp/scons_cache key: scons-${{ hashFiles('.github/workflows/selfdrive_tests.yaml') }}-${{ steps.date.outputs.time }}