diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-01-10 00:25:46 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-01-08 01:00:02 +0100 |
commit | 6106044849fcdda9f66e29829806c2053ac276a2 (patch) | |
tree | f6dae75220c4faad634d99c96bc5245f0c2de651 | |
parent | 03829e066dd63411e9f0eab74810320bb7eb5654 (diff) | |
download | guix-6106044849fcdda9f66e29829806c2053ac276a2.tar guix-6106044849fcdda9f66e29829806c2053ac276a2.tar.gz |
gnu: linux-libre: Bump max-silent-time even further.
Aarch64 CI build still fail with ‘timed out after 3600 seconds of
silence’.
* gnu/packages/linux.scm (make-linux-libre*):
Increase the max-silent-time to 3 hours.
Reported by akirakyle in #guix.
-rw-r--r-- | gnu/packages/linux.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 7d10da25ef..eb01e549ef 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1066,7 +1066,7 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration." (description "GNU Linux-Libre is a free (as in freedom) variant of the Linux kernel. It has been modified to remove all non-free binary blobs.") (license license:gpl2) - (properties '((max-silent-time . 3600))))) ;don't timeout on blob scan. + (properties '((max-silent-time . 10800))))) ;don't timeout on blob scan ;;; |