diff options
author | Ilan Joselevich <personal@ilanjoselevich.com> | 2024-08-23T17·12+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-08-23T19·55+0000 |
commit | e7ff04b5f1f36b3cee6395a68ba0d927dead69f6 (patch) | |
tree | 052d18fa212631bb0af248dc8b5140e31215ef72 /tvix | |
parent | beb6713983bb93c4efc5e25fcb92afdf2cba9cff (diff) |
feat(tvix/tools/weave): Add crate2nix-check r/8571
Change-Id: I4e02f56678e6efa6e2656b2f7398b6ad92581c57 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12303 Autosubmit: Ilan Joselevich <personal@ilanjoselevich.com> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/tools/weave/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tvix/tools/weave/default.nix b/tvix/tools/weave/default.nix index 8c5e1be928d1..3d979b6d3327 100644 --- a/tvix/tools/weave/default.nix +++ b/tvix/tools/weave/default.nix @@ -6,4 +6,6 @@ src = depot.tvix.utils.filterRustCrateSrc { root = prev.src.origSrc; }; }; }; -}).rootCrate.build +}).rootCrate.build.overrideAttrs { + meta.ci.extraSteps.crate2nix-check = depot.tvix.utils.mkCrate2nixCheck ./Cargo.nix; +} |