gnu: vulkan-loader: Limit tests to x86_64 and i686.
* gnu/packages/vulkan.scm (vulkan-loader)[arguments]: Only run the tests when building on x86_64-linux or i686-linux.
This commit is contained in:
parent
bcda49b656
commit
6e38ec447f
1 changed files with 4 additions and 2 deletions
|
@ -228,8 +228,10 @@ interpretation of the specifications for these languages.")
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:tests? (not (or (%current-target-system)
|
;; As many as 23 tests are expected to fail per architecture.
|
||||||
(target-riscv64?)))
|
;; Limit the tests to those architectures tested upstream.
|
||||||
|
#:tests? (and (%current-system)
|
||||||
|
(target-x86?))
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
#~(list (string-append "-DVULKAN_HEADERS_INSTALL_DIR="
|
#~(list (string-append "-DVULKAN_HEADERS_INSTALL_DIR="
|
||||||
(dirname (dirname
|
(dirname (dirname
|
||||||
|
|
Reference in a new issue