make artiq and board package available for extended tests

pull/16/head
Sebastien Bourdeauducq 2019-02-17 22:37:33 +08:00
parent c2496b4dcb
commit fc93b19ba7
1 changed files with 2 additions and 2 deletions

View File

@ -22,10 +22,10 @@ let
in in
jobs // { jobs // {
generated-nix = pkgs.lib.hydraJob generatedNix; generated-nix = pkgs.lib.hydraJob generatedNix;
channel = pkgs.releaseTools.channel { channel = pkgs.releaseTools.channel rec {
name = "main"; name = "main";
src = generatedNix; src = generatedNix;
constituents = builtins.attrValues jobs; constituents = builtins.attrValues jobs;
}; };
extended-tests = pkgs.runCommand "extended-tests" {} "cp ${./extended-tests.py} $out;"; extended-tests = pkgs.runCommand "extended-tests" { propagatedBuildInputs = [artiq artiq-board-kc705-nist_clock]; } "cp ${./extended-tests.py} $out;";
} }