mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-29 06:37:17 +00:00
581bed2017
* load in genesis state from JSON validators * completed feature with tests * bazel change * fix docker image * deep source
81 lines
2.6 KiB
Python
81 lines
2.6 KiB
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_test")
|
|
load("@io_bazel_rules_docker//go:image.bzl", "go_image")
|
|
load("@io_bazel_rules_docker//container:container.bzl", "container_bundle")
|
|
load("@io_bazel_rules_docker//contrib:push-all.bzl", "docker_push")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/tools/genesis-state-gen",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//shared/fileutil:go_default_library",
|
|
"//shared/interop:go_default_library",
|
|
"//shared/params:go_default_library",
|
|
"@com_github_ghodss_yaml//:go_default_library",
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "genesis-state-gen",
|
|
embed = [":go_default_library"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_image(
|
|
name = "image",
|
|
srcs = ["main.go"],
|
|
base = select({
|
|
"//tools:base_image_alpine": "//tools:alpine_cc_image",
|
|
"//tools:base_image_cc": "//tools:cc_image",
|
|
"//conditions:default": "//tools:cc_image",
|
|
}),
|
|
goarch = "amd64",
|
|
goos = "linux",
|
|
importpath = "github.com/prysmaticlabs/prysm/tools/genesis-state-gen",
|
|
pure = "off",
|
|
static = "off", # Static enabled binary seems to cause issues with DNS lookup with cgo.
|
|
race = "off",
|
|
tags = ["manual"],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//proto/beacon/p2p/v1:go_default_library",
|
|
"//shared/fileutil:go_default_library",
|
|
"//shared/interop:go_default_library",
|
|
"//shared/params:go_default_library",
|
|
"@com_github_ghodss_yaml//:go_default_library",
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
],
|
|
)
|
|
|
|
container_bundle(
|
|
name = "image_bundle",
|
|
images = {
|
|
"gcr.io/prysmaticlabs/prysm/genesis-state-gen:latest": ":image",
|
|
"gcr.io/prysmaticlabs/prysm/genesis-state-gen:{DOCKER_TAG}": ":image",
|
|
},
|
|
tags = ["manual"],
|
|
)
|
|
|
|
docker_push(
|
|
name = "push_images",
|
|
bundle = ":image_bundle",
|
|
tags = ["manual"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["main_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//shared/bls:go_default_library",
|
|
"//shared/interop:go_default_library",
|
|
"//shared/testutil/assert:go_default_library",
|
|
"//shared/testutil/require:go_default_library",
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
],
|
|
)
|