From 93793ac816032bee1e2a3bb743e8e683b34d8cdd Mon Sep 17 00:00:00 2001 From: Chloe <25387744+qimiko@users.noreply.github.com> Date: Thu, 25 Jul 2024 19:07:19 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=A5=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/actions/setup-cache/action.yml | 34 +++++++++++++------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/actions/setup-cache/action.yml b/.github/actions/setup-cache/action.yml index b7013a07..9e2aaa85 100644 --- a/.github/actions/setup-cache/action.yml +++ b/.github/actions/setup-cache/action.yml @@ -16,24 +16,24 @@ runs: using: "composite" steps: # https://github.com/mozilla/sccache/issues/2090 - - name: Download custom sccache - uses: robinraju/release-downloader@v1.10 - with: - repository: cgytrus/sccache - latest: true - fileName: 'sccache-*-x86_64-apple-darwin.zip' - tarBall: false - zipBall: false - out-file-path: "epic-sccache" - if: inputs.host == 'mac' && inputs.use-ccache + #- name: Download custom sccache + # uses: robinraju/release-downloader@v1.10 + # with: + # repository: cgytrus/sccache + # latest: true + # fileName: 'sccache-*-x86_64-apple-darwin.zip' + # tarBall: false + # zipBall: false + # out-file-path: "epic-sccache" + # if: inputs.host == 'mac' && inputs.use-ccache - - name: Setup custom sccache - shell: bash - run: | - 7z x "epic-sccache/sccache-*-x86_64-apple-darwin.zip" -o"epic-sccache" - echo "$GITHUB_WORKSPACE/epic-sccache" >> $GITHUB_PATH - chmod +x "epic-sccache/sccache" - if: inputs.host == 'mac' && inputs.use-ccache + #- name: Setup custom sccache + # shell: bash + # run: | + # 7z x "epic-sccache/sccache-*-x86_64-apple-darwin.zip" -o"epic-sccache" + # echo "$GITHUB_WORKSPACE/epic-sccache" >> $GITHUB_PATH + # chmod +x "epic-sccache/sccache" + # if: inputs.host == 'mac' && inputs.use-ccache - name: Setup sccache uses: hendrikmuhs/ccache-action@v1.2.13