Update rules_go to v0.29.0 (#10064)

* Update rules_go, delete patch, fix analyzers, remove old deployContract code, and prune old dependency which was broken in rules_go update

* Undo some WORKSPACE diffs

* Gazelle

* remove nofuzz, fix build issue

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
This commit is contained in:
Preston Van Loon
2022-01-31 01:06:07 -06:00
committed by GitHub
parent ef906cf704
commit 98470fdb13
15 changed files with 46 additions and 235 deletions

View File

@@ -1,5 +1,4 @@
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_tool_library")
go_library(
name = "go_default_library",
@@ -13,18 +12,6 @@ go_library(
],
)
go_tool_library(
name = "go_tool_library",
srcs = ["analyzer.go"],
importpath = "errcheck",
visibility = ["//visibility:public"],
deps = [
"@org_golang_x_tools//go/analysis:go_tool_library",
"@org_golang_x_tools//go/analysis/passes/inspect:go_tool_library",
"@org_golang_x_tools//go/ast/inspector:go_tool_library",
],
)
go_test(
name = "go_default_test",
srcs = ["embedded_walker_test.go"],