mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
f4adc0ea86
* Update to go 1.16 * Also update go.mod * rm go.sum then run go mod tidy * go mod tidy with go 1.16 Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
17 lines
452 B
Python
17 lines
452 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["every.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/runutil",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["@com_github_sirupsen_logrus//:go_default_library"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["every_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|