forked from M-Labs/nix-scripts
use new __hydraRetry to disable HITL unittest retries
This commit is contained in:
parent
1650d1f16f
commit
11f054c94b
3
main.nix
3
main.nix
|
@ -43,9 +43,12 @@ in
|
||||||
# Impure derivations, when they land in Nix/Hydra, should improve the situation.
|
# Impure derivations, when they land in Nix/Hydra, should improve the situation.
|
||||||
kc705-tests = pkgs.stdenv.mkDerivation rec {
|
kc705-tests = pkgs.stdenv.mkDerivation rec {
|
||||||
name = "kc705-tests";
|
name = "kc705-tests";
|
||||||
|
|
||||||
outputHashAlgo = "sha256";
|
outputHashAlgo = "sha256";
|
||||||
outputHashMode = "recursive";
|
outputHashMode = "recursive";
|
||||||
outputHash = import generateTestOkHash;
|
outputHash = import generateTestOkHash;
|
||||||
|
__hydraRetry = false;
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
(pkgs.python3.withPackages(ps: [ ps.paramiko artiqpkgs.artiq artiqpkgs.artiq-board-kc705-nist_clock ]))
|
(pkgs.python3.withPackages(ps: [ ps.paramiko artiqpkgs.artiq artiqpkgs.artiq-board-kc705-nist_clock ]))
|
||||||
artiqpkgs.binutils-or1k
|
artiqpkgs.binutils-or1k
|
||||||
|
|
Loading…
Reference in New Issue