[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/16: gnu: extra-cmake-modules: Don't run tests when cross-compiling.
From: |
guix-commits |
Subject: |
15/16: gnu: extra-cmake-modules: Don't run tests when cross-compiling. |
Date: |
Fri, 11 Mar 2022 23:43:26 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit fbc46b61daca05f8f8082fc90a62a5708415d651
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Fri Mar 4 13:01:18 2022 +0000
gnu: extra-cmake-modules: Don't run tests when cross-compiling.
* gnu/packages/kde-frameworks.scm
(extra-cmake-modules)[arguments]<#:tests?>: Set to #false when
cross-compiling.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
gnu/packages/kde-frameworks.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 65937f8970..aa88d140f5 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -106,7 +106,8 @@
'()
`(("qtbase" ,qtbase-5)))) ;for tests (needs qmake)
(arguments
- `(#:tests? ,(not (null? (package-native-inputs this-package)))
+ `(#:tests? ,(and (not (%current-target-system))
+ (not (null? (package-native-inputs this-package))))
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'fix-lib-path
- branch master updated (b769fe7f75 -> 662f1f7bba), guix-commits, 2022/03/11
- 04/16: gnu: ruby-yard-with-tests: Run tests conditionally., guix-commits, 2022/03/11
- 05/16: gnu: ruby-ffi-rzmq: Honor TESTS?., guix-commits, 2022/03/11
- 07/16: gnu: ecl: Run tests conditionally and please lint., guix-commits, 2022/03/11
- 08/16: gnu: perl-unicode-utf8: Run tests conditionally., guix-commits, 2022/03/11
- 02/16: gnu: lean: Update to 3.41.0 and fixes toward cross-compilation., guix-commits, 2022/03/11
- 01/16: lint: check-tests-true: Allow #:tests? #t for some build systems., guix-commits, 2022/03/11
- 13/16: gnu: belcard: Run tests conditionally., guix-commits, 2022/03/11
- 14/16: gnu: tdlib: Run tests conditionally., guix-commits, 2022/03/11
- 16/16: gnu: ghc-bsb-http-chunked: Don't run tests when cross-compiling., guix-commits, 2022/03/11
- 15/16: gnu: extra-cmake-modules: Don't run tests when cross-compiling.,
guix-commits <=
- 03/16: gnu: swi-prolog: Fix cross-compilation., guix-commits, 2022/03/11
- 06/16: gnu: go-1.16: Do not run tests when cross-compiling., guix-commits, 2022/03/11
- 12/16: gnu: lablgtk: Run tests conditionally., guix-commits, 2022/03/11
- 09/16: gnu: libicns: Do not explicitly set TESTS? to #t., guix-commits, 2022/03/11
- 11/16: gnu: Remove python2-promise., guix-commits, 2022/03/11
- 10/16: gnu: Remove python2-empy., guix-commits, 2022/03/11