2022-01-19 16:22:23 +00:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # gazelle:keep
|
|
|
|
|
2022-02-02 19:13:52 +00:00
|
|
|
lighthouse_version = "v2.1.2"
|
|
|
|
lighthouse_archive_name = "lighthouse-%s-x86_64-unknown-linux-gnu-portable.tar.gz" % lighthouse_version
|
|
|
|
|
2022-01-19 16:22:23 +00:00
|
|
|
def e2e_deps():
|
|
|
|
http_archive(
|
|
|
|
name = "web3signer",
|
|
|
|
urls = ["https://artifacts.consensys.net/public/web3signer/raw/names/web3signer.tar.gz/versions/21.10.5/web3signer-21.10.5.tar.gz"],
|
|
|
|
sha256 = "d122429f6a310bc555d1281e0b3f4e3ac43a7beec5e5dcf0a0d2416a5984f461",
|
|
|
|
build_file = "@prysm//testing/endtoend:web3signer.BUILD",
|
|
|
|
strip_prefix = "web3signer-21.10.5",
|
|
|
|
)
|
2022-02-02 19:13:52 +00:00
|
|
|
|
|
|
|
http_archive(
|
|
|
|
name = "lighthouse",
|
|
|
|
sha256 = "8a83ba0f7c24cc4e5b588e7a09bb4e5a1f919346ccf7000d3409a3690a85b221",
|
|
|
|
build_file = "@prysm//testing/endtoend:lighthouse.BUILD",
|
|
|
|
url = ("https://github.com/sigp/lighthouse/releases/download/%s/" + lighthouse_archive_name) % lighthouse_version,
|
|
|
|
)
|