diff options
| author | John Kehayias <john.kehayias@protonmail.com> | 2025-08-10 00:05:16 -0400 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-09-30 16:48:17 +0900 |
| commit | 786fcc9fa2bfc3a120b544ec6ba7710a6ab875e4 (patch) | |
| tree | 6e27fff0ebeee3bc97195dbdf0c715e88bfece50 | |
| parent | 15a9c6cec411463d2a58111ca5cac82e081e0cd4 (diff) | |
gnu: shaderc: Disable tests.
The check phase started failing (after core-updates merge maybe?) as there are
no tests since building them was previously disabled already.
* gnu/packages/vulkan.scm (shaderc)[arguments]: Disable tests.
Change-Id: Ibfa53bd30e90a3b4fd6b5bbed403b8a9aa615e9c
| -rw-r--r-- | gnu/packages/vulkan.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/vulkan.scm b/gnu/packages/vulkan.scm index fa598a99d7f..b0b64f95655 100644 --- a/gnu/packages/vulkan.scm +++ b/gnu/packages/vulkan.scm @@ -499,7 +499,8 @@ API.") "0w1mj5b3n6kp0brqindb7fppvllzlywkdk1zglkbj3bw8k0795mb")))) (build-system cmake-build-system) (arguments - `(;; FIXME: Skip most of the tests, because enabling system gtest breaks + `(#:tests? #f ; We don't build the tests, see below. + ;; FIXME: Skip most of the tests, because enabling system gtest breaks ;; the build: <https://github.com/google/shaderc/issues/470>. #:configure-flags (list "-DSHADERC_SKIP_TESTS=ON" |
