Replies: 1 comment 4 replies
-
Yep, the idea is you can either override The only (real) difference between the two is that This is if you actually need to invoke cargo itself. If you just care about the binaries you can always "install" them as a derivation's output and then write another derivation that tests them further, but that's up to you! |
Beta Was this translation helpful? Give feedback.
-
I have a set of tests (already written) that are basically:
I'd like them to be able to reuse the binaries from the existing
crane
step that I have (makingcargo build --release
a no-op, as everything is already compiled).I guess maybe I can go with
cargoBuild
and overridecargoBuildCommand
to run my custom script, but ideally a separate command would be neat.Beta Was this translation helpful? Give feedback.
All reactions