nim-libp2p/libp2p.nimble
cheatfate dfd824bd03
Fix #22.
Fix wire.initTAddress(MultiAddress).
Add Windows support to daemonapi.
Add CI tests for daemonapi on Windows.
Fix Linux CI tests to install latest daemon.
2019-08-01 08:56:59 +03:00

22 lines
494 B
Nim

mode = ScriptMode.Verbose
packageName = "libp2p"
version = "0.0.1"
author = "Status Research & Development GmbH"
description = "LibP2P implementation"
license = "MIT"
skipDirs = @["tests", "examples", "Nim"]
requires "nim > 0.18.0",
"nimcrypto >= 0.3.9",
"chronos"
proc runTest(filename: string) =
exec "nim c -r tests/" & filename
rmFile "tests/" & filename
task test, "Runs the test suite":
runTest "testnative"
runTest "testdaemon"