2022-01-19 16:22:23 +00:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # gazelle:keep
|
|
|
|
|
2023-03-29 13:04:47 +00:00
|
|
|
lighthouse_version = "v4.0.1"
|
2022-02-02 19:13:52 +00:00
|
|
|
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",
|
2023-10-16 18:06:36 +00:00
|
|
|
urls = ["https://artifacts.consensys.net/public/web3signer/raw/names/web3signer.tar.gz/versions/23.9.1/web3signer-23.9.1.tar.gz"],
|
|
|
|
sha256 = "aec9dc745cb25fd8d7b38b06e435e3138972c2cf842dd6f851d50be7bf081629",
|
2022-01-19 16:22:23 +00:00
|
|
|
build_file = "@prysm//testing/endtoend:web3signer.BUILD",
|
2023-10-16 18:06:36 +00:00
|
|
|
strip_prefix = "web3signer-23.9.1",
|
2022-01-19 16:22:23 +00:00
|
|
|
)
|
2022-02-02 19:13:52 +00:00
|
|
|
|
|
|
|
http_archive(
|
|
|
|
name = "lighthouse",
|
2023-03-29 13:04:47 +00:00
|
|
|
sha256 = "bb41eaa2f01b1231c1a8b24f1b6296c134c654ecc2b24c7f2c877f97420503f1",
|
2022-02-02 19:13:52 +00:00
|
|
|
build_file = "@prysm//testing/endtoend:lighthouse.BUILD",
|
2023-03-02 03:31:41 +00:00
|
|
|
url = ("https://github.com/sigp/lighthouse/releases/download/%s/" + lighthouse_archive_name) % lighthouse_version,
|
2022-02-02 19:13:52 +00:00
|
|
|
)
|