2018-12-18 17:39:39 +02:00
|
|
|
mode = ScriptMode.Verbose
|
|
|
|
|
2019-07-06 19:12:24 +02:00
|
|
|
packageName = "stew"
|
2018-12-18 17:39:39 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
author = "Status Research & Development GmbH"
|
2019-05-08 14:05:16 -06:00
|
|
|
description = "Backports, standard library candidates and small utilities that don't yet deserve their own repository"
|
2022-11-21 11:02:24 +01:00
|
|
|
license = "MIT or Apache License 2.0"
|
2018-12-18 17:39:39 +02:00
|
|
|
skipDirs = @["tests"]
|
|
|
|
|
2022-07-08 10:34:21 +01:00
|
|
|
requires "nim >= 1.2.0",
|
|
|
|
"unittest2"
|
2019-07-06 20:00:37 +02:00
|
|
|
|
2022-11-19 07:50:31 +01: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-08-05 19:58:34 +03:00
|
|
|
|
2022-11-19 07:50:31 +01:00
|
|
|
let styleCheckStyle = if (NimMajor, NimMinor) < (1, 6): "hint" else: "error"
|
|
|
|
let cfg =
|
|
|
|
" --styleCheck:usages --styleCheck:" & styleCheckStyle &
|
|
|
|
(if verbose: "" else: " --verbosity:0 --hints:off") &
|
2022-11-21 11:02:24 +01:00
|
|
|
" --skipParentCfg --skipUserCfg --outdir:build --nimcache:build/nimcache -f"
|
2021-01-07 10:33:01 +07:00
|
|
|
|
2022-11-19 07:50:31 +01: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 21:09:41 +07:00
|
|
|
|
2022-11-19 07:50:31 +01:00
|
|
|
task test, "Run all tests":
|
|
|
|
build "", "tests/test_helper"
|
2022-11-21 11:02:24 +01:00
|
|
|
for args in [
|
|
|
|
"--threads:off",
|
|
|
|
"--threads:on -d:nimTypeNames",
|
|
|
|
"--threads:on -d:noIntrinsicsBitOpts -d:noIntrinsicsEndians"
|
|
|
|
]: run args, "tests/all_tests"
|