prysm-pulse/tools/interop/convert-keys/BUILD.bazel
Preston Van Loon 3708a8f476 Add tool and script for interop testing (#3417)
* add tool and script for interop testing

* identity

* lint

* merge upstream, fix conflict, update script, add comment

* add comma separated support for --peer=

* remove NUM_VALIDATORS, comma fix

* WIP docker image

* use CI builder

* pr feedback

* whatever antoine says

* ignore git in docker

* jobs=auto

* disable remote cache

* try to cache the golang part

* try to cache the golang part

* nvm

* From Antoine with love

* fix
2019-09-09 17:31:19 -04:00

19 lines
507 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/prysmaticlabs/prysm/tools/interop/convert-keys",
visibility = ["//visibility:public"],
deps = [
"//tools/unencrypted-keys-gen:go_default_library",
"@in_gopkg_yaml_v2//:go_default_library",
],
)
go_binary(
name = "convert-keys",
embed = [":go_default_library"],
visibility = ["//visibility:public"],
)