add more tracing

wfvm
Astro 2020-06-17 22:10:28 +02:00
parent 6ba6edd6f2
commit f5429f28ae
1 changed files with 3 additions and 3 deletions

View File

@ -260,10 +260,10 @@ let
};
in
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";
src = generatedNix;
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; };
}