feat(tvix): add CI targets for checking crate features powerset
Closes: https://b.tvl.fyi/issues/401 With this change all crate features (and their combinations) will be built and tested in CI. From now on, when adding/removing a Cargo feature for a crate, you will want to add it to the features power set that gets tested in CI. For each crate there's a default.nix with a `mkFeaturePowerset` invocation, modify the list to include/remove the feature. Note that you don't want to add "collection" features, such as `fs` for tvix-[ca]store or `default`. Change-Id: I966dde1413d057770787da3296cce9c1924570e0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11717 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
This commit is contained in:
parent
c93849a3fc
commit
1b39d5868a
10 changed files with 112 additions and 47 deletions
23
tvix/utils.nix
Normal file
23
tvix/utils.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{ lib, depot, ... }:
|
||||
|
||||
{
|
||||
mkFeaturePowerset = { crateName, features, override ? { } }:
|
||||
let
|
||||
powerset = xs:
|
||||
let
|
||||
addElement = set: element:
|
||||
set ++ map (e: [ element ] ++ e) set;
|
||||
in
|
||||
lib.foldl' addElement [ [ ] ] xs;
|
||||
in
|
||||
lib.listToAttrs (map
|
||||
(featuresPowerset: {
|
||||
name = if featuresPowerset != [ ] then "with-features-${lib.concatStringsSep "-" featuresPowerset}" else "no-features";
|
||||
value = depot.tvix.crates.workspaceMembers.${crateName}.build.override (old: {
|
||||
runTests = true;
|
||||
features = featuresPowerset;
|
||||
} // (if lib.isFunction override then override old else override)
|
||||
);
|
||||
})
|
||||
(powerset features));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue