I'm trying optimize some docker builds that are building v8 as a dependency, so I'm trying to figure out if there's a way to cache to a specific directory so I can pass it through so our github actions can persist the cache between runs.
I tried setting `GIT_CACHE_PATH` since that was the only thing I could find through googling; but this resulted in `gclient sync` failing when it tries to set the remote url for v8 and gets `error: no such remote 'origin'`.
I've tried inspecting and expanding what I pull initially, and nothing seems to help except disabling the cache path variable, so I figure I'll need to find some other way.