From 3b6389aa2f49e87846760c8220387a2f4d27279f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 10 Oct 2023 12:18:45 +0200 Subject: [PATCH] nixos/release: don't block on firefox tests I can't recall when these tests last discovered a real problem. Having to do many manual restarts is annoying, e.g. https://hydra.nixos.org/build/237622614#tabs-buildsteps --- nixos/release-combined.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index 29dcdab7d18e..9c46409312aa 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -67,8 +67,15 @@ in rec { (onSystems ["x86_64-linux"] "nixos.tests.docker") (onFullSupported "nixos.tests.ecryptfs") (onFullSupported "nixos.tests.env") - (onFullSupported "nixos.tests.firefox-esr") - (onFullSupported "nixos.tests.firefox") + + # Way too many manual retries required on Hydra. + # Apparently it's hard to track down the cause. + # So let's depend just on the packages for now. + #(onFullSupported "nixos.tests.firefox-esr") + #(onFullSupported "nixos.tests.firefox") + (onFullSupported "nixpkgs.firefox-esr") + (onFullSupported "nixpkgs.firefox") + (onFullSupported "nixos.tests.firewall") (onFullSupported "nixos.tests.fontconfig-default-fonts") (onFullSupported "nixos.tests.gnome")