Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a40df9a0eac9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 86001ec4cecc
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 17, 2021

  1. 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
    (cherry picked from commit 46a4d53)
    roberth committed Feb 17, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    86001ec View commit details
Showing with 2 additions and 0 deletions.
  1. +2 −0 pkgs/development/libraries/qt-5/modules/qtwebengine.nix
2 changes: 2 additions & 0 deletions pkgs/development/libraries/qt-5/modules/qtwebengine.nix
Original file line number Diff line number Diff line change
@@ -218,6 +218,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;
};

}