Tobias Slettemoen Kongsvik
Tobias Slettemoen Kongsvik
I'm struggling with the same problem. Did you find a solution to this @mancusi ?
This is due to the Serializer in the Django view not having the "allow_pictures" (or whatever it's called) field. Just add the field to solve the problem.
@aman-harness @wenpincui We solved this by patching the generated BUILD.bazel files. ``` go_repository( name = "com_github_cloudflare_circl", build_file_proto_mode = "disable_global", importpath = "github.com/cloudflare/circl", patches = [ "//third-party/go/com_github_cloudflare_circl:fp448.patch", "//third-party/go/com_github_cloudflare_circl:fp25519.patch", "//third-party/go/com_github_cloudflare_circl:x448.patch", "//third-party/go/com_github_cloudflare_circl:x25519.patch", ],...
Anything I can do to help this along? I'd love to get golangci-lint working with rules_go!
We also see a similar issue. The change of `build_file_generation` didn't fix it. ``` Use --sandbox_debug to see verbose messages from the sandbox and retain the sandbox build root for...
I also have a use case for this where we use Bazel. Bazel is sandboxed and ideally has no network access during it's build phase. It would be nice have...