forked from M-Labs/nix-scripts
add more tracing
This commit is contained in:
parent
6ba6edd6f2
commit
f5429f28ae
|
@ -260,10 +260,10 @@ let
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
builtins.mapAttrs (key: value: builtins.trace "full-${key}" pkgs.lib.hydraJob value) jobs // {
|
builtins.mapAttrs (key: value: builtins.trace "full-${key}" pkgs.lib.hydraJob value) jobs // {
|
||||||
artiq-full = pkgs.releaseTools.channel {
|
artiq-full = builtins.trace "channel" (pkgs.releaseTools.channel {
|
||||||
name = "artiq-full";
|
name = "artiq-full";
|
||||||
src = generatedNix;
|
src = generatedNix;
|
||||||
constituents = builtins.attrValues jobs;
|
constituents = builtins.attrValues jobs;
|
||||||
};
|
});
|
||||||
conda-channel = import ./artiq-full/conda-channel.nix { inherit pkgs; } { inherit jobs; };
|
conda-channel = builtins.trace "conda-channel" (import ./artiq-full/conda-channel.nix { inherit pkgs; }) { inherit jobs; };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue