2019-03-28 15:18:59 +00:00
|
|
|
mode = ScriptMode.Verbose
|
|
|
|
|
2019-03-05 22:54:08 +00:00
|
|
|
import
|
2019-03-12 12:56:33 +00:00
|
|
|
beacon_chain/version as ver
|
2019-03-05 22:54:08 +00:00
|
|
|
|
2018-07-20 13:46:03 +00:00
|
|
|
packageName = "beacon_chain"
|
2019-03-05 22:54:08 +00:00
|
|
|
version = versionAsStr
|
2018-07-20 13:46:03 +00:00
|
|
|
author = "Status Research & Development GmbH"
|
2018-09-26 16:26:39 +00:00
|
|
|
description = "Eth2.0 research implementation of the beacon chain"
|
2018-07-20 13:46:03 +00:00
|
|
|
license = "MIT or Apache License 2.0"
|
2018-12-21 22:37:46 +00:00
|
|
|
installDirs = @["beacon_chain", "research"]
|
2019-11-28 22:01:12 +00:00
|
|
|
skipDirs = @["nfuzz"]
|
2018-12-21 22:37:46 +00:00
|
|
|
bin = @[
|
|
|
|
"beacon_chain/beacon_node",
|
2018-12-27 20:14:37 +00:00
|
|
|
"research/serialized_sizes",
|
2020-02-27 11:14:24 +00:00
|
|
|
"nbench/nbench",
|
2018-12-27 20:14:37 +00:00
|
|
|
]
|
2018-07-20 13:46:03 +00:00
|
|
|
|
|
|
|
### Dependencies
|
2019-02-07 11:02:40 +00:00
|
|
|
requires "nim >= 0.19.0",
|
2019-02-21 04:42:17 +00:00
|
|
|
"blscurve",
|
2018-11-23 23:58:49 +00:00
|
|
|
"chronicles",
|
2019-09-07 17:48:05 +00:00
|
|
|
"chronos",
|
2018-11-23 23:58:49 +00:00
|
|
|
"confutils",
|
2019-09-07 17:48:05 +00:00
|
|
|
"eth",
|
2019-02-06 17:56:04 +00:00
|
|
|
"json_rpc",
|
2019-09-07 17:48:05 +00:00
|
|
|
"json_serialization",
|
2020-02-13 12:19:12 +00:00
|
|
|
"libbacktrace",
|
2019-07-31 08:32:35 +00:00
|
|
|
"libp2p",
|
2019-09-07 17:48:05 +00:00
|
|
|
"metrics",
|
|
|
|
"nimcrypto",
|
|
|
|
"serialization",
|
|
|
|
"stew",
|
2020-03-24 11:13:07 +00:00
|
|
|
"testutils",
|
2019-10-02 12:38:14 +00:00
|
|
|
"prompt",
|
2019-09-07 17:48:05 +00:00
|
|
|
"web3",
|
|
|
|
"yaml"
|
2018-07-20 13:46:03 +00:00
|
|
|
|
|
|
|
### Helper functions
|
2019-07-13 15:58:01 +00:00
|
|
|
proc buildBinary(name: string, srcDir = "./", params = "", cmdParams = "", lang = "c") =
|
2018-07-20 13:46:03 +00:00
|
|
|
if not dirExists "build":
|
|
|
|
mkDir "build"
|
2019-03-28 15:18:59 +00:00
|
|
|
# allow something like "nim test --verbosity:0 --hints:off beacon_chain.nims"
|
|
|
|
var extra_params = params
|
|
|
|
for i in 2..<paramCount():
|
|
|
|
extra_params &= " " & paramStr(i)
|
2020-02-20 16:41:10 +00:00
|
|
|
exec "nim " & lang & " --out:./build/" & name & " -r " & extra_params & " " & srcDir & name & ".nim" & " " & cmdParams
|
2018-07-20 13:46:03 +00:00
|
|
|
|
2020-03-24 11:13:07 +00:00
|
|
|
task moduleTests, "Run all module tests":
|
|
|
|
buildBinary "beacon_node", "beacon_chain/",
|
|
|
|
"-d:chronicles_log_level=TRACE " &
|
|
|
|
"-d:const_preset=minimal " &
|
|
|
|
"-d:testutils_test_build"
|
|
|
|
|
2018-07-20 13:46:03 +00:00
|
|
|
### tasks
|
|
|
|
task test, "Run all tests":
|
2020-02-13 12:19:12 +00:00
|
|
|
# We're enabling the TRACE log level so we're sure that those rarely used
|
|
|
|
# pieces of code get tested regularly. Increased test output verbosity is the
|
|
|
|
# price we pay for that.
|
|
|
|
|
2019-05-27 12:48:13 +00:00
|
|
|
# Minimal config
|
2020-04-09 16:15:00 +00:00
|
|
|
buildBinary "proto_array", "beacon_chain/fork_choice/", "-d:const_preset=minimal"
|
|
|
|
buildBinary "fork_choice", "beacon_chain/fork_choice/", "-d:const_preset=minimal"
|
2020-02-13 12:19:12 +00:00
|
|
|
buildBinary "all_tests", "tests/", "-d:chronicles_log_level=TRACE -d:const_preset=minimal"
|
|
|
|
# Mainnet config
|
2020-04-09 16:15:00 +00:00
|
|
|
buildBinary "proto_array", "beacon_chain/fork_choice/", "-d:const_preset=mainnet"
|
|
|
|
buildBinary "fork_choice", "beacon_chain/fork_choice/", "-d:const_preset=mainnet"
|
2020-02-13 12:19:12 +00:00
|
|
|
buildBinary "all_tests", "tests/", "-d:const_preset=mainnet"
|
2019-08-07 03:09:26 +00:00
|
|
|
|
2019-11-06 11:17:03 +00:00
|
|
|
# Generic SSZ test, doesn't use consensus objects minimal/mainnet presets
|
2020-02-13 12:19:12 +00:00
|
|
|
buildBinary "test_fixture_ssz_generic_types", "tests/official/", "-d:chronicles_log_level=TRACE"
|
2019-11-06 11:17:03 +00:00
|
|
|
|
|
|
|
# Consensus object SSZ tests
|
2020-02-13 12:19:12 +00:00
|
|
|
buildBinary "test_fixture_ssz_consensus_objects", "tests/official/", "-d:chronicles_log_level=TRACE -d:const_preset=minimal"
|
|
|
|
buildBinary "test_fixture_ssz_consensus_objects", "tests/official/", "-d:const_preset=mainnet"
|
2019-08-07 03:09:26 +00:00
|
|
|
|
2020-02-13 12:19:12 +00:00
|
|
|
buildBinary "all_fixtures_require_ssz", "tests/official/", "-d:chronicles_log_level=TRACE -d:const_preset=minimal"
|
|
|
|
buildBinary "all_fixtures_require_ssz", "tests/official/", "-d:const_preset=mainnet"
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2019-11-15 22:37:39 +00:00
|
|
|
# State sim; getting into 4th epoch useful to trigger consensus checks
|
2020-04-29 11:44:07 +00:00
|
|
|
buildBinary "state_sim", "research/", "-d:const_preset=minimal", "--validators=2000 --slots=32"
|
|
|
|
buildBinary "state_sim", "research/", "-d:const_preset=mainnet", "--validators=2000 --slots=128"
|