6b6a34065e
This introduces another feature flag, "tracy" to the `tvix-tracing` crate. If enabled (not enabled by default), it'll add an additional layer emitting packets in a format that https://github.com/wolfpld/tracy can display. I had to be a bit tricky with the combinatorial complexity when adding this, but the resulting code still seems manageable. Change-Id: Ica824496728fa276ceae3f7a9754be0166e6558f Reviewed-on: https://cl.tvl.fyi/c/depot/+/10952 Tested-by: BuildkiteCI Reviewed-by: Simon Hauser <simon.hauser@helsinki-systems.de> Reviewed-by: flokli <flokli@flokli.de>
11 lines
374 B
Nix
11 lines
374 B
Nix
{ depot, lib, ... }:
|
|
|
|
(depot.tvix.crates.workspaceMembers.tvix-tracing.build.override {
|
|
runTests = true;
|
|
}).overrideAttrs (old: rec {
|
|
meta.ci.targets = lib.filter (x: lib.hasPrefix "with-features" x || x == "no-features") (lib.attrNames passthru);
|
|
passthru = depot.tvix.utils.mkFeaturePowerset {
|
|
inherit (old) crateName;
|
|
features = [ "otlp" "tracy" ];
|
|
};
|
|
})
|