mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
7f443e8387
* add latest changes * fix it * add multiclient support * fix tests * Apply suggestions from code review * fix test Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
21 lines
952 B
Python
21 lines
952 B
Python
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # gazelle:keep
|
|
|
|
lighthouse_version = "v2.3.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/22.5.0/web3signer-22.5.0.tar.gz"],
|
|
sha256 = "3a954f5302e424b34acb4bb024f275caf722d8b116c639617f7a2e0f9c9ddc78",
|
|
build_file = "@prysm//testing/endtoend:web3signer.BUILD",
|
|
strip_prefix = "web3signer-22.5.0",
|
|
)
|
|
|
|
http_archive(
|
|
name = "lighthouse",
|
|
sha256 = "6029acd211f269bcf41f86fd72fe540703a167ff96dfd952ff95b1693e3b5495",
|
|
build_file = "@prysm//testing/endtoend:lighthouse.BUILD",
|
|
url = ("https://github.com/sigp/lighthouse/releases/download/%s/" + lighthouse_archive_name) % lighthouse_version,
|
|
)
|