2018-01-23 00:23:07 +02:00
|
|
|
mode = ScriptMode.Verbose
|
|
|
|
|
|
|
|
packageName = "nimbus"
|
|
|
|
version = "0.1.0"
|
|
|
|
author = "Status Research & Development GmbH"
|
|
|
|
description = "An Ethereum 2.0 Sharding Client for Resource-Restricted Devices"
|
|
|
|
license = "Apache License 2.0"
|
2018-06-19 21:17:20 +02:00
|
|
|
skipDirs = @["tests", "examples"]
|
2018-12-24 17:03:27 +01:00
|
|
|
# we can't have the result of a custom task in the "bin" var - https://github.com/nim-lang/nimble/issues/542
|
|
|
|
# bin = @["build/nimbus"]
|
2018-01-23 00:23:07 +02:00
|
|
|
|
2019-02-05 20:15:50 +01:00
|
|
|
requires "nim >= 0.19",
|
2018-12-24 17:03:27 +01:00
|
|
|
"chronicles",
|
2018-05-28 13:22:28 +03:00
|
|
|
"nimcrypto",
|
|
|
|
"stint",
|
2018-07-20 20:02:19 +03:00
|
|
|
"json_rpc",
|
2019-02-06 19:03:36 +01:00
|
|
|
"chronos",
|
2019-02-05 20:15:50 +01:00
|
|
|
"bncurve",
|
2019-02-06 19:03:36 +01:00
|
|
|
"eth",
|
2019-02-05 20:15:50 +01:00
|
|
|
"std_shims"
|
2018-01-30 12:51:13 +02:00
|
|
|
|
2019-02-16 22:23:17 +01:00
|
|
|
proc buildBinary(name: string, srcDir = "./", params = "", lang = "c") =
|
|
|
|
if not dirExists "build":
|
|
|
|
mkDir "build"
|
|
|
|
# allow something like "nim nimbus --verbosity:0 --hints:off nimbus.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"
|
2018-09-25 01:25:17 +03:00
|
|
|
|
2018-05-07 14:41:54 +02:00
|
|
|
proc test(name: string, lang = "c") =
|
2019-03-31 22:49:32 +02:00
|
|
|
buildBinary name, "tests/", "-r -d:release -d:chronicles_log_level=ERROR"
|
2018-01-29 19:40:22 +02:00
|
|
|
|
2018-04-03 18:09:09 +02:00
|
|
|
task test, "Run tests":
|
2019-02-15 03:11:20 +01:00
|
|
|
test "all_tests"
|
2019-02-22 00:02:31 +01:00
|
|
|
test "test_rpc"
|
2019-04-24 22:45:29 +02:00
|
|
|
test "test_rpc_whisper"
|
2018-09-25 01:25:17 +03:00
|
|
|
|
|
|
|
task nimbus, "Build Nimbus":
|
2019-03-20 14:41:25 +01:00
|
|
|
buildBinary "nimbus", "nimbus/", "-d:chronicles_log_level=TRACE"
|
2018-12-24 17:03:27 +01:00
|
|
|
|