mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
40589905bc
* adding in changes for capella * fixing metrics * updating the web3signer version
26 lines
1.4 KiB
Python
26 lines
1.4 KiB
Python
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # gazelle:keep
|
|
|
|
lighthouse_version = "v3.1.2"
|
|
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.2.1/web3signer-23.2.1.tar.gz"],
|
|
sha256 = "652f88bce1945f1c8ad3943b20c7c9adba730b2e4a5b9dec13a695c41f3e2ff1",
|
|
build_file = "@prysm//testing/endtoend:web3signer.BUILD",
|
|
strip_prefix = "web3signer-23.2.1",
|
|
)
|
|
|
|
http_archive(
|
|
name = "lighthouse",
|
|
sha256 = "469d800ca8ed1e82af288d730d0e9f3e1e054fe1fe7262ab0964d315d1a15020",
|
|
build_file = "@prysm//testing/endtoend:lighthouse.BUILD",
|
|
# url = ("https://github.com/sigp/lighthouse/releases/download/%s/" + lighthouse_archive_name) % lighthouse_version,
|
|
# This is a compiled version of lighthouse from their `capella` branch at this commit
|
|
# https://github.com/sigp/lighthouse/commit/10d32ee04c416200205a051724daafb76ae2bc50. Lighthouse does not have support
|
|
# for all the capella features as of their latest release, so this is a temporary compromise to allow multiclient test
|
|
# runs till their official release includes the required capella features in.
|
|
url = "https://prysmaticlabs.com/uploads/misc/lighthouse-10d32e.tar.gz",
|
|
)
|