guix_mirror_bot pushed a commit to branch version-1.5.0 in repository guix.
commit 4470dd7386d991f27d55048223a71d583eb144f3 Author: Rutherther <[email protected]> AuthorDate: Wed Jan 21 14:23:26 2026 +0100 gnu: jemalloc: Disable tests on armhf. Jemalloc can't be built on CI. * gnu/packages/jemalloc.scm (jemalloc): Disable tests on armhf. Change-Id: Iebc5ec7cbe43f4ccbc93569fc6a43e2b5d035fbe --- gnu/packages/jemalloc.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/jemalloc.scm b/gnu/packages/jemalloc.scm index b5fdd39921..aaa7eee0a0 100644 --- a/gnu/packages/jemalloc.scm +++ b/gnu/packages/jemalloc.scm @@ -48,6 +48,8 @@ (build-system gnu-build-system) (arguments (list + #:tests? (and (not (%current-target-system)) + (not (target-arm32?))) #:phases #~(modify-phases %standard-phases (add-after 'unpack 'delete-thp-test
