forked from M-Labs/nix-scripts
support impure derivation for HITL tests
This commit is contained in:
parent
eddcdb4043
commit
8e0ff1d2ff
|
@ -59,8 +59,8 @@ in
|
|||
extended-tests = pkgs.stdenv.mkDerivation {
|
||||
name = "extended-tests";
|
||||
|
||||
# requires patched Nix
|
||||
__networked = true;
|
||||
__networked = true; # compatibility with old patched Nix
|
||||
__impure = true; # Nix 2.8+
|
||||
|
||||
buildInputs = [
|
||||
(pkgs.python3.withPackages(ps: [ ps.paramiko artiqpkgs.artiq artiqpkgs.artiq-board-kc705-nist_clock ]))
|
||||
|
|
|
@ -21,8 +21,8 @@ in
|
|||
zc706-hitl-tests = pkgs.lib.hydraJob (pkgs.stdenv.mkDerivation {
|
||||
name = "zc706-hitl-tests";
|
||||
|
||||
# requires patched Nix
|
||||
__networked = true;
|
||||
__networked = true; # compatibility with old patched Nix
|
||||
__impure = true; # Nix 2.8+
|
||||
|
||||
buildInputs = [
|
||||
pkgs.netcat pkgs.openssh pkgs.rsync artiq-fast.artiq artiq-fast.artiq-netboot
|
||||
|
|
Loading…
Reference in New Issue