diff options
author | Sharlatan Hellseher <[email protected]> | 2024-12-30 16:22:56 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:42:40 +0000 |
commit | 9623f6d92cc3cfe3e8f89fc67271c3237f5c0bff (patch) | |
tree | 9eee21b79bf49c2ae3e1ec600ca6f6d127597e7a /gnu/packages/golang-check.scm | |
parent | 06b409255b5dff8d8b44bae3f64a3127887ee26c (diff) |
gnu: go-github-com-go-playground-validator-v10: Limit tests to x86_64.
Limit tests to x86_64 architecture as they fail on others, see
<https://ci.guix.gnu.org/build/7801336/log/raw>.
* gnu/packages/golang-check.scm (go-github-com-go-playground-validator-v10)
[arguments] <tests?>: Only run on x86_64 system.
Change-Id: I0b07638cbfdf8a737ea2f040bcb0dd27bfede09a
Diffstat (limited to 'gnu/packages/golang-check.scm')
-rw-r--r-- | gnu/packages/golang-check.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 99ed72cb65..a8a765f8d6 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -472,6 +472,11 @@ tests.") (build-system go-build-system) (arguments (list + ;; Tests on non-x86_64 architectures are not well supported upstream. + ;; + ;; Most of them fail with error like: Error:Field validation for + ;; 'IsColor' failed on the 'iscolor' tag. + #:tests? (target-x86-64?) #:import-path "github.com/go-playground/validator/v10")) (native-inputs (list go-github-com-go-playground-assert-v2)) |