mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix go-swagger to work with Go 1.14
The template used was broken with Go 1.14, which has some stricter rules, introduced in https://golang.org/cl/206124 ``` root@b5beaed18589:/go/src/github.com/docker/docker# ./hack/generate-swagger-api.sh 2020/02/07 15:12:01 trying to read config from /go/src/github.com/docker/docker/api/swagger-gen.yaml 2020/02/07 15:12:02 rendering 1 templates for model ErrorResponse 2020/02/07 15:12:02 name field ErrorResponse 2020/02/07 15:12:02 package field types 2020/02/07 15:12:02 creating "error_response.go" in "api/types" as definition model: template: schematype:2:18: executing "schemaType" at <(len .AllOf) gt 0>: can't give argument to non-function len .AllOf ``` Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
3af8d484b1
commit
addc0c809f
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ WORKDIR $GOPATH/src/github.com/go-swagger/go-swagger
|
|||
# Install go-swagger for validating swagger.yaml
|
||||
# This is https://github.com/kolyshkin/go-swagger/tree/golang-1.13-fix
|
||||
# TODO: move to under moby/ or fix upstream go-swagger to work for us.
|
||||
ENV GO_SWAGGER_COMMIT 5793aa66d4b4112c2602c716516e24710e4adbb5
|
||||
ENV GO_SWAGGER_COMMIT 5e6cb12f7c82ce78e45ba71fa6cb1928094db050
|
||||
RUN --mount=type=cache,target=/root/.cache/go-build \
|
||||
--mount=type=cache,target=/go/pkg/mod \
|
||||
--mount=type=tmpfs,target=/go/src/ \
|
||||
|
|
Loading…
Reference in a new issue