From 34a9edf14df6679c1fc496e1e912ad63ff773086 Mon Sep 17 00:00:00 2001 From: Ewan Harris Date: Fri, 16 Feb 2024 14:49:38 +0000 Subject: [PATCH] ci(android): install ccache via action (#13994) --- .github/actions/build-android/action.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/actions/build-android/action.yml b/.github/actions/build-android/action.yml index 3f150d06384..ac6d0389498 100644 --- a/.github/actions/build-android/action.yml +++ b/.github/actions/build-android/action.yml @@ -49,18 +49,10 @@ runs: run: npm run lint:android shell: bash - - name: Set up Homebrew - id: set-up-homebrew - uses: Homebrew/actions/setup-homebrew@master - - name: Install ccache - run: brew install ccache - shell: bash - - - name: Retrieve ccache - uses: actions/cache@v3 + uses: hendrikmuhs/ccache-action@v1.2 with: - path: ${{ env.CCACHE_DIR }} + create-symlink: true key: ${{ runner.os }}-ccache-${{ github.sha }} restore-keys: | ${{ runner.os }}-ccache-