all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#72418] [PATCH] gnu: stress-ng: Don't stress test when building for riscv64-linux.
@ 2024-08-02  9:51 Christopher Baines
  2024-08-11 10:34 ` bug#72418: " Christopher Baines
  0 siblings, 1 reply; 2+ messages in thread
From: Christopher Baines @ 2024-08-02  9:51 UTC (permalink / raw)
  To: 72418

As this seems to cause instability on the VisionFive 2 systems at least.

* gnu/packages/admin.scm (stress-ng)[arguments]: Set #:tests? to #f on
riscv64.

Change-Id: I0d7f3081793e1a286cf2644e9218516c9fda56d5
---
 gnu/packages/admin.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 113b8e2481..51e1085e9f 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -2593,7 +2593,11 @@ (define-public stress-ng
         (base32 "1z9vjn2131iv3pwrh04z6r5ygi1qgad5bi3jhghcvc3v1b4k5ran"))))
     (build-system gnu-build-system)
     (arguments
-     (list #:make-flags
+     ;; XXX The test suite seems to cause instability on the VisionFive 2
+     ;; build machines, maybe it's stressing them as intended but this is
+     ;; unhelpful
+     (list #:tests? (not (target-riscv64?))
+           #:make-flags
            #~(list (string-append "CC=" #$(cc-for-target))
                    (string-append "BINDIR=" #$output "/bin")
                    ;; XXX Really: MAN1DIR, or man pages won't be found.

base-commit: 56d3d04a442b52097e523dcfebf60ff5bf82bcfd
-- 
2.45.2





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#72418: [PATCH] gnu: stress-ng: Don't stress test when building for riscv64-linux.
  2024-08-02  9:51 [bug#72418] [PATCH] gnu: stress-ng: Don't stress test when building for riscv64-linux Christopher Baines
@ 2024-08-11 10:34 ` Christopher Baines
  0 siblings, 0 replies; 2+ messages in thread
From: Christopher Baines @ 2024-08-11 10:34 UTC (permalink / raw)
  To: 72418-done

[-- Attachment #1: Type: text/plain, Size: 421 bytes --]

Christopher Baines <mail@cbaines.net> writes:

> As this seems to cause instability on the VisionFive 2 systems at least.
>
> * gnu/packages/admin.scm (stress-ng)[arguments]: Set #:tests? to #f on
> riscv64.
>
> Change-Id: I0d7f3081793e1a286cf2644e9218516c9fda56d5
> ---
>  gnu/packages/admin.scm | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)

Pushed to master as 7ad2bf9ded3ba14c355a67a03fda664fa3f97db4.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-08-11 10:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-02  9:51 [bug#72418] [PATCH] gnu: stress-ng: Don't stress test when building for riscv64-linux Christopher Baines
2024-08-11 10:34 ` bug#72418: " Christopher Baines

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.