mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 11:32:09 +00:00
b23ca60efd
* Add version linking to binaries via --workspace_status_command=./scripts/workspace_status.sh * dont export some things * lint and better date * even better date
13 lines
333 B
Python
13 lines
333 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["version.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/version",
|
|
visibility = ["//visibility:public"],
|
|
x_defs = {
|
|
"gitCommit": "{STABLE_GIT_COMMIT}",
|
|
"buildDate": "{DATE}",
|
|
},
|
|
)
|