nimbus-eth2/beacon_chain.nimble

69 lines
2.4 KiB
Plaintext
Raw Normal View History

mode = ScriptMode.Verbose
import
2019-03-12 12:56:33 +00:00
beacon_chain/version as ver
2018-07-20 13:46:03 +00:00
packageName = "beacon_chain"
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"
installDirs = @["beacon_chain", "research"]
bin = @[
"beacon_chain/beacon_node",
"research/serialized_sizes",
"research/state_sim",
]
2018-07-20 13:46:03 +00:00
### Dependencies
2019-02-07 11:02:40 +00:00
requires "nim >= 0.19.0",
"blscurve",
"chronicles",
"chronos",
"confutils",
"eth",
"json_rpc",
"json_serialization",
2019-07-31 08:32:35 +00:00
"libp2p",
"metrics",
"nimcrypto",
"serialization",
"stew",
2019-10-02 12:38:14 +00:00
"prompt",
"web3",
"yaml"
2018-07-20 13:46:03 +00:00
### Helper functions
proc buildBinary(name: string, srcDir = "./", params = "", cmdParams = "", lang = "c") =
2018-07-20 13:46:03 +00:00
if not dirExists "build":
mkDir "build"
# 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)
exec "nim " & lang & " --out:./build/" & name & " " & extra_params & " " & srcDir & name & ".nim" & " " & cmdParams
2018-07-20 13:46:03 +00:00
### tasks
task test, "Run all tests":
# Mainnet config
buildBinary "all_tests", "tests/", "-r -d:release -d:chronicles_log_level=ERROR"
# Minimal config
buildBinary "all_tests", "tests/", "-r -d:release -d:chronicles_log_level=ERROR -d:const_preset=minimal"
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
buildBinary "test_fixture_ssz_generic_types", "tests/official/", "-r -d:release -d:chronicles_log_level=DEBUG"
# Consensus object SSZ tests
#buildBinary "test_fixture_ssz_static", "tests/official/", "-r -d:release -d:chronicles_log_level=DEBUG -d:const_preset=minimal"
#buildBinary "test_fixture_ssz_static", "tests/official/", "-r -d:release -d:chronicles_log_level=DEBUG -d:const_preset=mainnet"
2019-08-07 03:09:26 +00:00
buildBinary "all_fixtures_require_ssz", "tests/official/", "-r -d:release -d:chronicles_log_level=DEBUG -d:const_preset=minimal"
buildBinary "all_fixtures_require_ssz", "tests/official/", "-r -d:release -d:chronicles_log_level=DEBUG -d:const_preset=mainnet"
# State sim; getting into 3rd epoch useful
buildBinary "state_sim", "research/", "-r -d:release", "--validators=128 --slots=24"
task sync_lfs_tests, "Sync LFS json tests":
# Syncs the json test files (but not the EF yaml tests)
exec "scripts/setup_official_tests.sh"