gnu: grub :Disable tests on aarch64.
* gnu/packages/bootloaders.scm (grub)[arguments]: Add aarch64 to the architectures where the test suite is not run.
This commit is contained in:
parent
a912c723f7
commit
63087721bb
|
@ -50,7 +50,9 @@
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix utils))
|
#:use-module (guix utils)
|
||||||
|
#:use-module (srfi srfi-1)
|
||||||
|
#:use-module (srfi srfi-26))
|
||||||
|
|
||||||
(define unifont
|
(define unifont
|
||||||
;; GNU Unifont, <http://gnu.org/s/unifont>.
|
;; GNU Unifont, <http://gnu.org/s/unifont>.
|
||||||
|
@ -103,9 +105,10 @@
|
||||||
(("grub_cmd_date grub_cmd_set_date grub_cmd_sleep")
|
(("grub_cmd_date grub_cmd_set_date grub_cmd_sleep")
|
||||||
"grub_cmd_date grub_cmd_sleep"))
|
"grub_cmd_date grub_cmd_sleep"))
|
||||||
#t)))
|
#t)))
|
||||||
;; Disable tests on ARM platforms.
|
;; Disable tests on ARM and AARCH64 platforms.
|
||||||
#:tests? ,(not (string-prefix? "arm" (or (%current-target-system)
|
#:tests? ,(not (any (cute string-prefix? <> (or (%current-target-system)
|
||||||
(%current-system))))))
|
(%current-system)))
|
||||||
|
'("arm" "aarch64")))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("gettext" ,gettext-minimal)
|
`(("gettext" ,gettext-minimal)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue