You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Kouhei Sutou (Jira)" <ji...@apache.org> on 2021/11/29 03:58:00 UTC

[jira] [Resolved] (ARROW-14880) [C++][CI] Enable ccache on macOS CI builds

     [ https://issues.apache.org/jira/browse/ARROW-14880?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Kouhei Sutou resolved ARROW-14880.
----------------------------------
    Fix Version/s: 7.0.0
       Resolution: Fixed

Issue resolved by pull request 11787
[https://github.com/apache/arrow/pull/11787]

> [C++][CI] Enable ccache on macOS CI builds
> ------------------------------------------
>
>                 Key: ARROW-14880
>                 URL: https://issues.apache.org/jira/browse/ARROW-14880
>             Project: Apache Arrow
>          Issue Type: Improvement
>          Components: C++, Continuous Integration
>            Reporter: Antoine Pitrou
>            Assignee: Yibo Cai
>            Priority: Minor
>              Labels: pull-request-available
>             Fix For: 7.0.0
>
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> We could install and enable ccache on macOS Github Actions jobs. It would probably speed up a lot of builds.
> Apparently ccache is available on Homebrew.  Here is an example using it:
> https://github.com/azerothcore/azerothcore-wotlk/blob/master/.github/workflows/macos_build.yml#L26-L33
> {code:yaml}
>       - name: Cache
>         uses: actions/cache@v2
>         with:
>           path: ~/Library/Caches/ccache
>           key: ccache:${{ matrix.os }}:${{ github.ref }}:${{ github.sha }}
>           restore-keys: |
>             ccache:${{ matrix.os }}:${{ github.ref }}
>             ccache:${{ matrix.os }}
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)