mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
9261da7fb1
* save progress * tidy * Update go.yml * make CI happy * gosec * revert back * Update go.yml * change go version * remove fixed test case * fix ci * fix updates * fix up * fix race tests * fix bad mock * lock it * fix it * fix e2e builds * use gotags * Revert "use gotags" This reverts commit 808863f427399723a3e7e2b70bcc4771d108e8e6. * Revert "fix e2e builds" This reverts commit eb351e7d319b13fea2642271390e1f2863fc6d72. * Revert "fix it" This reverts commit 9e99dac94f68538e0cd3f8958b7f10f1fe433b26. * Revert "lock it" This reverts commit 1a3c60ad41b76c651af2d64edff2eaf864ad64ec. * different approach * better Co-authored-by: james-prysm <90280386+james-prysm@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.4.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.7.0/web3signer-22.7.0.tar.gz"],
|
|
sha256 = "a4b7c6261776c651bc9016c73d28e99190d97a77c2d661715ae1902eedffb1c0",
|
|
build_file = "@prysm//testing/endtoend:web3signer.BUILD",
|
|
strip_prefix = "web3signer-22.7.0",
|
|
)
|
|
|
|
http_archive(
|
|
name = "lighthouse",
|
|
sha256 = "bfa32f62281f57d234881278ed9ca4712a946907b9e6ad6cd7f6e3a3bdea5364",
|
|
build_file = "@prysm//testing/endtoend:lighthouse.BUILD",
|
|
url = ("https://github.com/sigp/lighthouse/releases/download/%s/" + lighthouse_archive_name) % lighthouse_version,
|
|
)
|