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
Our CI/CD workflows install the same dependencies on every run, which means longer runtimes and heat somewhere around the world. We should leverage regular containers and GHA caching to reuse them.
Implementation considerations
Containers make sense for environment and tooling dependencies as those almost never change and we can rebuild on demand. For package dependencies that may change on every PR, package manager caching would work best.
The text was updated successfully, but these errors were encountered:
Feature description
Our CI/CD workflows install the same dependencies on every run, which means longer runtimes and heat somewhere around the world. We should leverage regular containers and GHA caching to reuse them.
Implementation considerations
Containers make sense for environment and tooling dependencies as those almost never change and we can rebuild on demand. For package dependencies that may change on every PR, package manager caching would work best.
The text was updated successfully, but these errors were encountered: