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
RUN --mount=type=cached,target=... caches are not preserved/used between steps on CI. On my laptop, when the configure and build LLVM layer of the "builder" image in the dockerfile can no longer be pulled directly from the cached layer (say a previous layer was updated or needs to be rebuilt) the build time--thanks to the ccache cache--is cut from ~2 hours to ~4 minutes. However, with GHA CI, these caches seem to not be reused between runs, so a full 2.5 hour rebuild of LLVM takes place if the layer needs to be rebuilt.
The text was updated successfully, but these errors were encountered:
RUN --mount=type=cached,target=...
caches are not preserved/used between steps on CI. On my laptop, when the configure and build LLVM layer of the "builder" image in the dockerfile can no longer be pulled directly from the cached layer (say a previous layer was updated or needs to be rebuilt) the build time--thanks to theccache
cache--is cut from ~2 hours to ~4 minutes. However, with GHA CI, these caches seem to not be reused between runs, so a full 2.5 hour rebuild of LLVM takes place if the layer needs to be rebuilt.The text was updated successfully, but these errors were encountered: