mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: smalltalk: Disable tests on x86-64.
* gnu/packages/smalltalk.scm (smalltalk)[arguments]: Disable tests on x86-64. Change-Id: I6838e94545df4c11f048b06dfbfd99358bf240a3
This commit is contained in:
parent
2cf45e9ef1
commit
607280fa8f
1 changed files with 5 additions and 1 deletions
|
@ -25,6 +25,7 @@ (define-module (gnu packages smalltalk)
|
|||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (gnu packages)
|
||||
|
@ -82,7 +83,10 @@ (define-public smalltalk
|
|||
(inputs
|
||||
(list gmp libffi libltdl libsigsegv lightning))
|
||||
(arguments
|
||||
`(#:phases
|
||||
`(;; FIXME: Tests fail on x86-64 in the build container, but they pass
|
||||
;; in a regular shell.
|
||||
#:tests? ,(not (target-x86-64?))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; XXX: To be removed with the next release of Smalltalk.
|
||||
;; The overflow patch modifies configure.ac, therefore remove
|
||||
|
|
Loading…
Reference in a new issue