From 46a4d53063c7794933f581688e4229a0420af5c7 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Tue, 16 Feb 2021 10:17:55 +0100 Subject: [PATCH] qtwebengine: Increase build timeout to 24h The default 10h timeout caused the cancellation of builds on aarch64-linux builders. Perhaps counterintuitively, this wastes resources because it requires a restart, but never completes. https://hydra.nixos.org/build/136917190 --- pkgs/development/libraries/qt-5/modules/qtwebengine.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix index 7e5582cca481..9613eed28743 100644 --- a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix +++ b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix @@ -229,6 +229,8 @@ qtModule { description = "A web engine based on the Chromium web browser"; maintainers = with maintainers; [ matthewbauer ]; platforms = platforms.unix; + # This build takes a long time; particularly on slow architectures + timeout = 24 * 3600; }; }