diff options
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/koch.nim b/koch.nim index 7e2682599..477b4424b 100644 --- a/koch.nim +++ b/koch.nim @@ -538,6 +538,12 @@ proc runCI(cmd: string) = else: buildTools() + for a in "zip opengl sdl1 jester@#head".split: + let buildDeps = "build"/"deps" # xxx factor pending https://github.com/timotheecour/Nim/issues/616 + # if this gives `Additional info: "build/deps" [OSError]`, make sure nimble is >= v0.12.0, + # otherwise `absolutePath` is needed, refs https://github.com/nim-lang/nimble/issues/901 + execFold("", "nimble install -y --nimbleDir:$# $#" % [buildDeps.quoteShell, a]) + ## run tests execFold("Test nimscript", "nim e tests/test_nimscript.nims") when defined(windows): |