-
Notifications
You must be signed in to change notification settings - Fork 159
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
Caching efficiently in CI #51
Comments
It is possible to cache Rust artifacts to some extent, as in this snippet: https://github.com/actions/cache/blob/master/examples.md#rust---cargo. Combined with that pretty valuable information from the https://github.com/actions-rs/meta#21 it can potentially speed up the CI execution right now. |
PR: #69 |
@stjepang Even though that PR can be merged, I suggest we keep this open because it's far from optimal currently. So there's still this question of properly caching things. |
See: #69 (comment) for details on the limitations of the current Github Actions's caching mechanism |
Closing this issue due to inactivity. I didn't find the lack of caching to be a huge problem :) |
Currently we don't cache anything, and that's very wasteful.
We should follow actions-rs/meta#21 closely for the availability of better caching support in the Github Actions helpers we use.
And we are lucky to have the maintainer of these helpers as a committer already @svartalf!
The text was updated successfully, but these errors were encountered: