Piotr Jachowicz
Piotr Jachowicz
Neither works. grpc_extra_deps above rules_docker yields the error ``` DEBUG: /home/pjachowi/.cache/bazel/_bazel_pjachowi/5e134da5bf9b530e653d23b3eb9634dc/external/bazel_gazelle/internal/go_repository.bzl:209:18: org_golang_x_tools: gazelle: /home/pjachowi/.cache/bazel/_bazel_pjachowi/5e134da5bf9b530e653d23b3eb9634dc/external/org_golang_x_tools/cmd/fiximports/testdata/src/old.com/bad/bad.go: error reading go file: /home/pjachowi/.cache/bazel/_bazel_pjachowi/5e134da5bf9b530e653d23b3eb9634dc/external/org_golang_x_tools/cmd/fiximports/testdata/src/old.com/bad/bad.go:2:43: expected 'package', found 'EOF' gazelle: found packages nointerface (nointerface.go) and aliases...
I also tried to pin gazelle as the first rule ``` http_archive( name = "io_bazel_rules_go", sha256 = "685052b498b6ddfe562ca7a97736741d87916fe536623afb7da2824c0211c369", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.33.0/rules_go-v0.33.0.zip", "https://github.com/bazelbuild/rules_go/releases/download/v0.33.0/rules_go-v0.33.0.zip", ], ) http_archive( name = "bazel_gazelle", sha256...
I found a workaround consisting of putting in my WORKSPACE file explicite declaration of rules_go *prior to* `rules_proto_grpc` a the very beginning of the file ``` # File WORKSPACE begin...