guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: rust: Work around Hydra bug.


From: guix-commits
Subject: 01/01: gnu: rust: Work around Hydra bug.
Date: Sun, 17 Mar 2019 06:05:02 -0400 (EDT)

dannym pushed a commit to branch master
in repository guix.

commit 7311ed3f869a6b18dd183acdd135d033b2f2cdb0
Author: Danny Milosavljevic <address@hidden>
Date:   Sun Mar 17 10:59:56 2019 +0100

    gnu: rust: Work around Hydra bug.
    
    * gnu/packages/rust.scm (rust-1.20)[properties]: Work around Hydra bug.
---
 gnu/packages/rust.scm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm
index be91674..048a910 100644
--- a/gnu/packages/rust.scm
+++ b/gnu/packages/rust.scm
@@ -430,7 +430,13 @@ safety and thread safety guarantees.")
     (package
       (inherit base-rust)
       (outputs '("out" "doc" "cargo"))
-      (properties '())
+      ;; Since rust-1.19 is local, it's quite probable that Hydra
+      ;; will build rust-1.19 only as a dependency of rust-1.20.
+      ;; But then Hydra will use the wrong properties, the ones here,
+      ;; for rust-1.19.  Therefore, we copied the properties of
+      ;; rust-1.19 here.
+      (properties '((timeout . 72000)               ;20 hours
+                    (max-silent-time . 18000)))     ;5 hours (for armel)
       (arguments
        (substitute-keyword-arguments (package-arguments rust-1.19)
          ((#:phases phases)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]