ci/nix: use a "test" cargo profile

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-07-25 18:06:45 -04:00
parent 04971d0430
commit fb8a2846df
6 changed files with 40 additions and 5 deletions

View file

@ -14,7 +14,7 @@
let
main' = main.override {
profile = "dev";
profile = "test";
all_features = true;
disable_release_max_log_level = true;
disable_features = [

View file

@ -153,7 +153,7 @@ commonAttrs = {
];
};
dontStrip = profile == "dev";
dontStrip = profile == "dev" || profile == "test";
buildInputs = lib.optional (featureEnabled "jemalloc") rust-jemalloc-sys';