mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 08:37:37 +00:00
b45a6664be
* fix all cases * update web3signer * current progress * fix it finally * push it back to capella * remove hard-coded forks * fix failing tests * gaz * fix dumb bug * fix bad test setup * change back
21 lines
955 B
Python
21 lines
955 B
Python
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # gazelle:keep
|
|
|
|
lighthouse_version = "v4.5.0"
|
|
lighthouse_archive_name = "lighthouse-%s-x86_64-unknown-linux-gnu-portable.tar.gz" % lighthouse_version
|
|
|
|
def e2e_deps():
|
|
http_archive(
|
|
name = "web3signer",
|
|
urls = ["https://artifacts.consensys.net/public/web3signer/raw/names/web3signer.tar.gz/versions/23.11.0/web3signer-23.11.0.tar.gz"],
|
|
sha256 = "e7643a6aa32efd859e96a82cb3ea03a294fd92c22fffeab987e5ec97500867a8",
|
|
build_file = "@prysm//testing/endtoend:web3signer.BUILD",
|
|
strip_prefix = "web3signer-23.11.0",
|
|
)
|
|
|
|
http_archive(
|
|
name = "lighthouse",
|
|
sha256 = "1e91ecab827649ac8ea0cfbb11ee2fb159cecd6ac5125e56dd27004225b128c9",
|
|
build_file = "@prysm//testing/endtoend:lighthouse.BUILD",
|
|
url = ("https://github.com/sigp/lighthouse/releases/download/%s/" + lighthouse_archive_name) % lighthouse_version,
|
|
)
|