artiq-full: disable other jobs

Astro 2020-06-17 19:08:20 +02:00
parent 59d6df933e
commit dcad2654a3
1 changed files with 8 additions and 7 deletions

View File

@ -253,17 +253,18 @@ let
inherit (pkgs) stdenv lib fetchgit git python3Packages texlive texinfo; inherit (pkgs) stdenv lib fetchgit git python3Packages texlive texinfo;
inherit (pythonDeps) sphinxcontrib-wavedrom; inherit (pythonDeps) sphinxcontrib-wavedrom;
}; };
jobs = (import generatedNix { inherit pkgs; }) // sipycoManualPackages // artiqManualPackages // { jobs = import generatedNix { inherit pkgs; };
_jobs = (import generatedNix { inherit pkgs; }) // sipycoManualPackages // artiqManualPackages // {
# This is in the example in the ARTIQ manual - precompile it to speed up # This is in the example in the ARTIQ manual - precompile it to speed up
# installation for users. # installation for users.
matplotlib-qt = pkgs.lib.hydraJob (pkgs.python3Packages.matplotlib.override { enableQt = true; }); matplotlib-qt = pkgs.lib.hydraJob (pkgs.python3Packages.matplotlib.override { enableQt = true; });
}; };
in in
builtins.mapAttrs (key: value: pkgs.lib.hydraJob value) jobs // { builtins.mapAttrs (key: value: pkgs.lib.hydraJob value) jobs // {
artiq-full = pkgs.releaseTools.channel { #artiq-full = 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 = import ./artiq-full/conda-channel.nix { inherit pkgs; } { inherit jobs; };
} }