You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to build the docker container to reproduce today's release build, but it failed at installing protoc-gen-doc:
Removing intermediate container 1212580db3af
The command '/bin/sh -c go get -v -u github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc' returned a non-zero code: 2
I investigated further and ran:
docker exec -ti bitbox02-firmware-dev go get -v -u github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc
Seems like this kind of problem will pop up in the future again the way the dependencies are imported right now. Everything that is downloaded should be versioned and checked. I'm also not a fan of using rustup to get the rust toolchain. Can this be replaced by a static script?
Uh oh!
There was an error while loading. Please reload this page.
I wanted to build the docker container to reproduce today's release build, but it failed at installing protoc-gen-doc:
I investigated further and ran:
Which in turn showed me the actual error:
After reading through this: golang/protobuf#1094 I am thinking that the problem is the go version. Should the Dockerfile be updated to 1.13?
Edit:
I tested building with a bumped go version and that indeed did the trick.
The text was updated successfully, but these errors were encountered: