mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: stress-ng: Don't stress test when building for riscv64-linux.
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
This commit is contained in:
parent
5f0dcf22a3
commit
7ad2bf9ded
1 changed files with 5 additions and 1 deletions
|
@ -2593,7 +2593,11 @@ system is under heavy load.")
|
||||||
(base32 "1z9vjn2131iv3pwrh04z6r5ygi1qgad5bi3jhghcvc3v1b4k5ran"))))
|
(base32 "1z9vjn2131iv3pwrh04z6r5ygi1qgad5bi3jhghcvc3v1b4k5ran"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(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))
|
#~(list (string-append "CC=" #$(cc-for-target))
|
||||||
(string-append "BINDIR=" #$output "/bin")
|
(string-append "BINDIR=" #$output "/bin")
|
||||||
;; XXX Really: MAN1DIR, or man pages won't be found.
|
;; XXX Really: MAN1DIR, or man pages won't be found.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue