efraim pushed a commit to branch master
in repository guix.

commit a037815f628326952fa78230189898a0505c5ca4
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon May 30 15:26:17 2022 +0300

    gnu: nss: Skip tests on riscv64-linux.
    
    * gnu/packages/nss.scm (nss)[arguments]: Skip tests when building for
    riscv64-linux.
---
 gnu/packages/nss.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/nss.scm b/gnu/packages/nss.scm
index bf2003d927..5e719ad5b8 100644
--- a/gnu/packages/nss.scm
+++ b/gnu/packages/nss.scm
@@ -1,7 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès 
<[email protected]>
 ;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2021 Mark H Weaver 
<[email protected]>
-;;; Copyright © 2016, 2017, 2018, 2019, 2021 Efraim Flashner 
<[email protected]>
+;;; Copyright © 2016-2019, 2021, 2022 Efraim Flashner <[email protected]>
 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <[email protected]>
 ;;; Copyright © 2020, 2021 Marius Bakke <[email protected]>
 ;;; Copyright © 2020 Jonathan Brielmaier <[email protected]>
@@ -158,6 +158,9 @@ in the Mozilla clients.")
                   (ice-9 ftw)
                   (ice-9 match)
                   (srfi srfi-26))
+       #:tests? ,(not (or (%current-target-system)
+                          ;; Tests take more than 30 hours on riscv64-linux.
+                          (target-riscv64?)))
        #:phases
        (modify-phases %standard-phases
          (replace 'configure

Reply via email to