Skip to content

Commit

Permalink
Use ccache on macOS
Browse files Browse the repository at this point in the history
Originally (aseprite#2699) ccache was only enable for Linux due to suspiciously low
macOS yields.

I have addressed the likely issue upstream
(hendrikmuhs/ccache-action#147) and ccache can be used
on macOS now as well.
  • Loading branch information
janisozaur authored Sep 25, 2023
1 parent af19d81 commit 19b54ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
submodules: 'recursive'
- name: ccache
uses: hendrikmuhs/ccache-action@v1
if: runner.os == 'Linux'
if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }}
with:
key: ${{ matrix.os }}-${{ matrix.enable_ui }}-${{ matrix.build_type }}
- uses: turtlesec-no/get-ninja@main
Expand Down

0 comments on commit 19b54ff

Please sign in to comment.