From 3e3cd3b13292a2c2a50ed6f942192f3b6a71e16e Mon Sep 17 00:00:00 2001 From: evandrocoan Date: Wed, 15 Apr 2020 16:26:55 -0300 Subject: [PATCH] Attempt to fix macos cache breaking for no reason https://github.com/ankitects/anki/pull/560/checks?check_run_id=590022813 --- .github/workflows/checks.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 319ae1e0f..e42bae4cf 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -89,11 +89,13 @@ jobs: # Necessary for now for the cargo cache: # https://github.com/actions/cache/issues/133#issuecomment-599102035 - name: Fix ~/.cache permissions - if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' + if: matrix.os == 'ubuntu-latest' run: | sudo chown -R $(whoami):$(id -ng) ~/.cargo/ + # Disable it for macos because it pyenv cache is bugged (https://github.com/ankitects/anki/pull/563) - name: Cache pyenv + if: matrix.os != 'macos-latest' uses: actions/cache@v1 with: path: ${{ github.workspace }}${{ matrix.SEP }}pyenv