mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-gogo-protobuf: Enable tests.
* gnu/packages/golang.scm (go-github-com-gogo-protobuf): [arguments] <skip-build?>: Set to #t, as no go files in project's root. <tests?>. Enable them. <test-flags>: Skip 8 tests. Change-Id: I83544f09a4a3b150041db3a7a0261976b435b33d
This commit is contained in:
parent
1bea991448
commit
90387a762a
1 changed files with 16 additions and 6 deletions
|
@ -3604,12 +3604,22 @@ and lookup requests. Browse requests are not supported yet.")
|
|||
"0dfv1bhx5zhb5bsj5sj757nkacf2swp1ajpcyj9d0b37n602m18a"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
`(#:import-path "github.com/gogo/protobuf"
|
||||
; Source-only package
|
||||
#:tests? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'build))))
|
||||
(list
|
||||
#:skip-build? #t
|
||||
#:import-path "github.com/gogo/protobuf"
|
||||
;; protoc: exec: "protoc-min-version": executable file not found in $PATH
|
||||
;; err = exec: "protoc": executable file not found in $PATH:
|
||||
#:test-flags
|
||||
#~(list "-skip" (string-join
|
||||
(list "TestDashFilename"
|
||||
"TestEmbedMarshaler"
|
||||
"TestGolden"
|
||||
"TestParameters"
|
||||
"TestPopulateWarning"
|
||||
"TestRepeatedEmbed"
|
||||
"TestStdTypesGoString"
|
||||
"TestTakesTooLongToDebug")
|
||||
"|"))))
|
||||
(synopsis "Protocol Buffers for Go with Gadgets")
|
||||
(description "Gogoprotobuf is a fork of golang/protobuf with extra code
|
||||
generation features. This code generation is used to achieve:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue