diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-02-27 22:23:04 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-02-27 22:24:02 +0100 |
commit | 65f7c35d02175806f676b8e130236dd3e6c8ec60 (patch) | |
tree | 15c46c0673bb83a3684a3ed44dbce5b564897a6d /build-aux | |
parent | 833efa0d3e31ae9efbbc449d7ad3dcc97f7b98cd (diff) | |
download | guix-65f7c35d02175806f676b8e130236dd3e6c8ec60.tar guix-65f7c35d02175806f676b8e130236dd3e6c8ec60.tar.gz |
hydra: Set the default absolute build timeout to 20h.
* build-aux/hydra/gnu-system.scm (package->alist): Add 'timeout' item.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/hydra/gnu-system.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm index 73031bf62c..c004115212 100644 --- a/build-aux/hydra/gnu-system.scm +++ b/build-aux/hydra/gnu-system.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -66,7 +66,11 @@ (long-description . ,(package-description package)) (license . ,(package-license package)) (home-page . ,(package-home-page package)) - (maintainers . ("bug-guix@gnu.org")))) + (maintainers . ("bug-guix@gnu.org")) + + ;; Work around versions of 'hydra-eval-guile-jobs' before Hydra commit + ;; 61448ca (27 Feb. 2014) which used a default timeout of 2h. + (timeout . 72000))) (define (package-job store job-name package system) "Return a job called JOB-NAME that builds PACKAGE on SYSTEM." |