-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
workflow to separate dependency install step from the build step #3615
Comments
@gregwebs, |
That would be a different workflow, perhaps |
Look at #3567 |
oh, perfect! That didn't turn up in my initial search |
Actually, I will keep this open since the PR is still open (maintainers may change according to their worfklows). |
Ahh, I see there is already an issue too. Sorry, I probably should have been able to find these in my searching. |
I think cargo has great defaults, but it isn't meeting the needs for all my workflows.
On a continous integration server, to setup my cache I want to run
cargo build --only-dependencies
, which does not attempt to compile my program and instead just installs the Cargo.lock dependencies.This workflow is supported by Haskell's stack tool (which Cargo learn other things from also, including docker integration and snapshots).
I apologize if there is already a way to achieve this functionality: I am not an experienced Cargo user.
The text was updated successfully, but these errors were encountered: