Skip to content

Auto-disable (deep) caching of core builds if needed #479

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion legacy/builder/phases/core_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,13 @@ func (s *CoreBuilder) Run(ctx *types.Context) error {
}

if coreBuildCachePath != nil {
if err := coreBuildCachePath.MkdirAll(); err != nil {
if _, err := coreBuildCachePath.RelTo(ctx.BuildPath); err != nil {
logger := ctx.GetLogger()
logger.Println(constants.LOG_LEVEL_INFO, "Couldn't deeply cache core build: {0}", err)
logger.Println(constants.LOG_LEVEL_INFO, "Running normal build of the core...")
coreBuildCachePath = nil
ctx.CoreBuildCachePath = nil
} else if err := coreBuildCachePath.MkdirAll(); err != nil {
return i18n.WrapError(err)
}
}
Expand Down