You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: avoid downloading package when local cache exists (#123)
* fix: avoid downloading package when local cache exists
As mentioned in
#107,
`setup` function didn't use `find` function even though it uses
`cacheDir` to store downloaded files, which leads to redundant download.
It is not significant on GitHub-hosted runners because
`cacheDir` stores files in local file system, which is ephemeral.
However, it wastes time on self-hosted runners.
This commit adds a step to search local file system cache for sccache as
well as splitting download procedure to a dedicated function.
* fix: explicit comparison for boolean-like value
0 commit comments