Do not run system-dependent examples #213
Open
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.
Hello!
I'm packaging just on GNU Guix and found some friction when packaging this crate1 (Guix needs all dependencies to be compiled an tested) because it requires access to some executables that are system dependent, so I've marked some of the doc-tests to not run (but will be compiled) so testing can be done on GNU Guix (each build is a container with minimal utilities needed to compile the source code with the additional dependencies).
Also I've relaxed the version requirements on
Cargo.toml
, this to make maintenance easier on GNU Guix side as some of the dependencies might not be on the latest released version. (crates are updated but it's a slow process and maybe some crates have semver breaking changes). To overcome the MSRV issue on the CI, I pinned thebitflags
crate on the GitHub workflow.