From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Need to increase 20-hour build timeout for NSS on MIPS Date: Fri, 22 May 2015 00:03:32 +0200 Message-ID: <87r3q9y4ej.fsf@gnu.org> References: <87k2w1okat.fsf@netris.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33795) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YvYZ7-0004TU-VY for guix-devel@gnu.org; Thu, 21 May 2015 18:03:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YvYZ2-0000VF-K9 for guix-devel@gnu.org; Thu, 21 May 2015 18:03:45 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:46371) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YvYZ2-0000V9-HU for guix-devel@gnu.org; Thu, 21 May 2015 18:03:40 -0400 In-Reply-To: <87k2w1okat.fsf@netris.org> (Mark H. Weaver's message of "Thu, 21 May 2015 14:30:18 -0400") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Mark H Weaver Cc: guix-devel@gnu.org Mark H Weaver skribis: > So, we either need a way to set the timeout on a per-package basis, or > we need to increase the default timeout in gnu-system.scm. I still > don't know how much to increase it, because in this case there were no > other builds happening on the machine for much of the time, whereas > typically there will be two builds assigned to each MIPS build slave. > > Suggestions? What about using the =E2=80=98properties=E2=80=99 field of the package: (define-public nss (package ;; ... (properties `((timeout . ,(* 40 3600)))))) and then have gnu-system.scm honor it when present? Thanks, Ludo=E2=80=99.