From 3aca3d3bba54eaedefc7c472af8bca16ce1f163d Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 7 Dec 2022 14:05:02 +0300 Subject: refactor(tvix): build Rust projects using crate2nix Introduces granular dependency builds using crate2nix, bootstrapped off the generated configuration from the newly introduced workspace (see cl/7533). This commit checks in the generated Cargo.nix file which can be regenerated with a parameterless invocation of `crate2nix generate` in `//tvix`. I tried generating this in IFD, but it turned out to be harder than what seemed worthwhile for now. In this setup, the various build targets for Rust projects end up being attributes of the imported `Cargo.nix` file at the `tvix.crates` attribute. These still lack configuration, however, which has been fixed in the various `default.nix` files of individual projects. Note that we (temporarily) lose the ability to build tvix-eval's benchmarks in CI. I haven't figured out what magic incantation summons them from the void again ... The `eval-okay-readDir` tests from both test suites have been disabled because they fail for unknown reasons when run in this new derivation. Somebody will have to debug it! Change-Id: I2014614ccb9c8951aedbd71df7966ca191a13695 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7538 Autosubmit: tazjin Reviewed-by: flokli Tested-by: BuildkiteCI --- tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-readDir.nix | 1 + 1 file changed, 1 insertion(+) create mode 100644 tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-readDir.nix (limited to 'tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-readDir.nix') diff --git a/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-readDir.nix b/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-readDir.nix new file mode 100644 index 0000000000..a7ec9292aa --- /dev/null +++ b/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-readDir.nix @@ -0,0 +1 @@ +builtins.readDir ./readDir -- cgit 1.4.1