From 4b45b70e7a0593718968cf20c659c1141e2caea0 Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Tue, 23 Jun 2020 10:29:48 -0400 Subject: [PATCH] Github Actions remove MacOS homebrew cache - it's large and takes as much time saving/restoring the cache as it saves --- .github/workflows/compile_macos.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/compile_macos.yml b/.github/workflows/compile_macos.yml index 0cb1fddd28..e52bf552a6 100644 --- a/.github/workflows/compile_macos.yml +++ b/.github/workflows/compile_macos.yml @@ -22,16 +22,6 @@ jobs: with: token: ${{secrets.ACCESS_TOKEN}} - - uses: actions/cache@v2 - with: - path: | - ~/Library/Caches/pip - ~/Library/Caches/Homebrew - /usr/local/Homebrew - key: ${{runner.os}}-px4-${{ hashFiles('**/requirements.txt') }} - restore-keys: | - ${{runner.os}}-px4- - - name: setup run: ./Tools/setup/OSX.sh @@ -45,8 +35,8 @@ jobs: uses: actions/cache@v2 with: path: ~/.ccache - key: ${{matrix.config}}-ccache-${{steps.ccache_cache_timestamp.outputs.timestamp}} - restore-keys: ${{matrix.config}}-ccache- + key: macos_${{matrix.config}}-ccache-${{steps.ccache_cache_timestamp.outputs.timestamp}} + restore-keys: macos_${{matrix.config}}-ccache- - name: setup ccache run: | mkdir -p ~/.ccache