nim-stew/stew.nimble

38 lines
1.3 KiB
Plaintext
Raw Normal View History

mode = ScriptMode.Verbose
2019-07-06 17:12:24 +00:00
packageName = "stew"
version = "0.1.0"
author = "Status Research & Development GmbH"
2019-05-08 20:05:16 +00:00
description = "Backports, standard library candidates and small utilities that don't yet deserve their own repository"
license = "MIT or Apache License 2.0"
skipDirs = @["tests"]
2023-07-05 13:13:50 +00:00
requires "nim >= 1.6.0",
"results",
"unittest2"
2019-07-06 18:00:37 +00:00
2022-11-19 06:50:31 +00:00
let nimc = getEnv("NIMC", "nim") # Which nim compiler to use
let lang = getEnv("NIMLANG", "c") # Which backend (c/cpp/js)
let flags = getEnv("NIMFLAGS", "") # Extra flags for the compiler
let verbose = getEnv("V", "") notin ["", "0"]
2022-11-19 06:50:31 +00:00
let cfg =
2023-07-05 13:13:50 +00:00
" --styleCheck:usages --styleCheck:error" &
2022-11-19 06:50:31 +00:00
(if verbose: "" else: " --verbosity:0 --hints:off") &
" --skipParentCfg --skipUserCfg --outdir:build --nimcache:build/nimcache -f"
2021-01-07 03:33:01 +00:00
2022-11-19 06:50:31 +00:00
proc build(args, path: string) =
exec nimc & " " & lang & " " & cfg & " " & flags & " " & args & " " & path
proc run(args, path: string) =
build args & " -r", path
2020-06-15 14:09:41 +00:00
2022-11-19 06:50:31 +00:00
task test, "Run all tests":
build "", "tests/test_helper"
for args in [
"--threads:off",
"--threads:on -d:nimTypeNames",
"--threads:on -d:noIntrinsicsBitOpts -d:noIntrinsicsEndians"]:
run args, "tests/all_tests"
if (NimMajor, NimMinor) > (1, 6):
2023-07-05 13:13:50 +00:00
run args & " --mm:refc", "tests/all_tests"