From a8d2d6e97ed5c7fba6b627537da0b5e925034326 Mon Sep 17 00:00:00 2001 From: Ilan Joselevich Date: Fri, 23 Aug 2024 20:12:58 +0300 Subject: [PATCH] feat(tvix/tools/crunch-v2): Add crate2nix-check Change-Id: I922caae2ec3f87a7f3a5dcc8e9d366f0e71ce900 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12300 Tested-by: BuildkiteCI Autosubmit: Ilan Joselevich Reviewed-by: flokli --- tvix/tools/crunch-v2/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tvix/tools/crunch-v2/default.nix b/tvix/tools/crunch-v2/default.nix index a3eb25eb9..8014aa944 100644 --- a/tvix/tools/crunch-v2/default.nix +++ b/tvix/tools/crunch-v2/default.nix @@ -10,4 +10,6 @@ nativeBuildInputs = [ pkgs.protobuf ]; }; }; -}).rootCrate.build +}).rootCrate.build.overrideAttrs { + meta.ci.extraSteps.crate2nix-check = depot.tvix.utils.mkCrate2nixCheck ./Cargo.nix; +}