ci: add integration test #1
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The primary purpose of devazoa is to enable a workflow like:
For testing, this means we want to be sure that our flakes a) evaluate, and b) actually work for setting up the project, for each supported platform.
This adds a CI job for doing just this: clone
rust-bitcoinkernel,nix develop .., andcargo test. Somewhat brittle at the moment considering its pulling in the downstream project fresh each time, so a failure could result from a change outsider our repo. Leaving whether or not to pin these to a release of the downstream project for now, only because I think that will require more careful thought.Note: this is currently failing for
x86_64-linuxon main, but merging as this will make testing a fix much easier. Up until now, I can usually get it working for one platform and then it's broken for the other platform and I'm finding it quite tedious to remember to test on both (hence the CI work).