-
Notifications
You must be signed in to change notification settings - Fork 157
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
Use Github actions/cache to cache the go deps in CI #2104
Comments
Thanks for opening this issue 👍. The team will review it shortly. If this is a bug report, make sure to include clear instructions how on to reproduce the problem with minimal reproducible examples, where possible. If this is a security report, please review our security policy as outlined in SECURITY.md. If you haven't already, please take a moment to review our project's Code of Conduct document. |
By looking at this figure I thought that Below image shows the time |
Most of the time is being taken by either upload/download-artifact step or while pulling our build image.
We should see if there is a way to run the CI without using uploading and downloading the artifacts. Maybe explore https://github.com/actions/setup-go that support caching as well. |
The upload artifact was addressed in #2534 without actually using the cache. |
We should consider caching the go mod dependencies while running tests and go mod download in CI.
The text was updated successfully, but these errors were encountered: