mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: java-jctools-core-1: Skip tests on aarch64-linux.
* gnu/packages/java.scm (java-jctools-core-1)[arguments]: When building on aarch64-linux skip the tests. Change-Id: I83a40b5eb352be48b9083aa57dd10e87b525c7be
This commit is contained in:
parent
51439bf251
commit
d1feac0049
1 changed files with 4 additions and 1 deletions
|
@ -11317,7 +11317,10 @@ (define-public java-jctools-core-1
|
|||
(arguments
|
||||
`(#:jar-name "java-jctools-core.jar"
|
||||
#:source-dir "jctools-core/src/main/java"
|
||||
#:test-dir "jctools-core/src/test"))
|
||||
#:test-dir "jctools-core/src/test"
|
||||
;; The tests timeout on some architectures.
|
||||
#:tests? ,(not (or (target-aarch64?)
|
||||
(%current-target-system)))))
|
||||
(native-inputs
|
||||
(list java-junit java-hamcrest-all))
|
||||
(home-page "https://github.com/JCTools/JCTools")
|
||||
|
|
Loading…
Reference in a new issue