summary refs log tree commit diff
path: root/build-aux/hydra
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2018-12-28 22:36:38 +0100
committerLudovic Courtès <ludo@gnu.org>2018-12-29 01:05:17 +0100
commitdd8356e3c6a27b4d6655a3d0aea2d52410f6edc4 (patch)
treea853a9bf8516f825fe3f98ef833f5b62af98990d /build-aux/hydra
parente4231cfeeae16352e76ccdbeebe67e17da7262c4 (diff)
downloadguix-dd8356e3c6a27b4d6655a3d0aea2d52410f6edc4.tar.gz
hydra: Use short timeouts for the QEMU jobs and system tests.
These builds shouldn't take too long.  Sometimes the guest kernel
crashes and the VM gets stuck; we should be able to terminate those jobs
quickly.

* build-aux/hydra/gnu-system.scm (qemu-jobs)[->alist]: Add
'max-silent-time' and 'timeout'.
(system-test-jobs)[test->thunk]: Likewise.
Diffstat (limited to 'build-aux/hydra')
-rw-r--r--build-aux/hydra/gnu-system.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm
index 05d430df0a..b225c02077 100644
--- a/build-aux/hydra/gnu-system.scm
+++ b/build-aux/hydra/gnu-system.scm
@@ -162,6 +162,8 @@ SYSTEM."
       (long-description . "This is a demo stand-alone QEMU image of the GNU
 system.")
       (license . ,gpl3+)
+      (max-silent-time . 600)
+      (timeout . 3600)
       (home-page . ,%guix-home-page-url)
       (maintainers . ("bug-guix@gnu.org"))))
 
@@ -221,6 +223,8 @@ system.")
                                 (system-test-name test)))
         (long-description . ,(system-test-description test))
         (license . ,gpl3+)
+        (max-silent-time . 600)
+        (timeout . 3600)
         (home-page . ,%guix-home-page-url)
         (maintainers . ("bug-guix@gnu.org")))))