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
The PGO optimisation seems to work okay, but if the go mod cache is generated in jobs where it is not included, it is not properly cached. With that, on every run, PGO needs to have its dependencies downloaded + compiled during CI. This can add around 20 seconds of build time.
An example of that is when you have the following flow:
The PGO optimisation seems to work okay, but if the
go mod
cache is generated in jobs where it is not included, it is not properly cached. With that, on every run, PGO needs to have its dependencies downloaded + compiled during CI. This can add around 20 seconds of build time.An example of that is when you have the following flow:
In this case, when the
go mod cache warm
runs, it doesn't save thedatadog-pgo
deps at all. Besides that, there is the build time, as mentioned.Ideally, this could be solved by either:
releases
APIsetup-datadog-pgo
would do all the heavy lifting (download release etc)The text was updated successfully, but these errors were encountered: