about summary refs log tree commit diff
path: root/tvix/eval/default.nix
diff options
context:
space:
mode:
authorGriffin Smith <root@gws.fyi>2022-09-02T18·53-0400
committergrfn <grfn@gws.fyi>2022-09-02T19·10+0000
commitaf9dca36635df677fce559c5fdd3f08680d84557 (patch)
treef61e9ffa2dd3c4126e266446112afabe0631e17d /tvix/eval/default.nix
parent29f8f06319ea59ed39d4e0ef566ec79b3a1387cd (diff)
chore(tvix/eval): Build with --all-targets r/4604
Primarily to make sure we build benchmark targets, and avoid breaking
them

Change-Id: I0c43f4cf99ddfd38e7545ef2d8276ef6b240a1e8
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6285
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/eval/default.nix')
-rw-r--r--tvix/eval/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/eval/default.nix b/tvix/eval/default.nix
index 09f712d078..ea049eb492 100644
--- a/tvix/eval/default.nix
+++ b/tvix/eval/default.nix
@@ -4,6 +4,7 @@ lib.fix (self:
 depot.third_party.naersk.buildPackage {
   src = ./.;
   doCheck = true;
+  cargoBuildOptions = opts: opts ++ [ "--all-targets" ];
 
   meta.ci.targets = builtins.attrNames self.passthru;