forked from M-Labs/nix-scripts
re-enable ping
This commit is contained in:
parent
5d209faf80
commit
5dda10720f
|
@ -21,9 +21,9 @@ with open(hydra_log, "w") as log:
|
|||
|
||||
run("artiq_flash", "-t", "kc705", "-V", "nist_clock")
|
||||
|
||||
time.sleep(15)
|
||||
time.sleep(10)
|
||||
|
||||
#run("ping", "kc705-1", "-c10", "-w30")
|
||||
run("ping", "kc705-1", "-c10", "-w30")
|
||||
|
||||
env = {
|
||||
"ARTIQ_ROOT": artiq.__path__ + "/examples/kc705_nist_clock",
|
||||
|
|
6
main.nix
6
main.nix
|
@ -28,6 +28,10 @@ in
|
|||
constituents = builtins.attrValues jobs;
|
||||
};
|
||||
extended-tests = pkgs.runCommand "extended-tests" {
|
||||
propagatedBuildInputs = [(pkgs.python3.withPackages(ps: [artiqpkgs.artiq artiqpkgs.artiq-board-kc705-nist_clock])) artiqpkgs.openocd];
|
||||
propagatedBuildInputs = [
|
||||
(pkgs.python3.withPackages(ps: [artiqpkgs.artiq artiqpkgs.artiq-board-kc705-nist_clock]))
|
||||
artiqpkgs.openocd
|
||||
pkgs.iputils
|
||||
];
|
||||
} "cp ${./extended-tests.py} $out;";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue