mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
addc3897c4
* Use STABLE_ prefix for git tag to force a relink of version * Add comment about STABLE_
14 lines
365 B
Python
14 lines
365 B
Python
load("@prysm//tools/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}",
|
|
"gitTag": "{STABLE_GIT_TAG}",
|
|
},
|
|
)
|