diff options
author | flywind <xzsflywind@gmail.com> | 2022-01-03 20:40:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-03 20:40:43 +0800 |
commit | 19bcb43a0e21dd222ffd3fad8c5fb2d8e85d59ea (patch) | |
tree | 77d390fc6881346f051b2e909e3adb8525f39850 /testament | |
parent | bd4f76a2e3b9282548e62ba3b620b09d6c564373 (diff) | |
download | Nim-19bcb43a0e21dd222ffd3fad8c5fb2d8e85d59ea.tar.gz |
enable multiple packages (arraymancer, fidget ...) (#19311)
The cause of arraymancer failure has been tracked here: https://github.com/mratsim/Arraymancer/issues/505 And it was fixed by https://github.com/mratsim/Arraymancer/pull/542
Diffstat (limited to 'testament')
-rw-r--r-- | testament/important_packages.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testament/important_packages.nim b/testament/important_packages.nim index 7e15e7c65..381aa27ac 100644 --- a/testament/important_packages.nim +++ b/testament/important_packages.nim @@ -35,7 +35,7 @@ proc pkg(name: string; cmd = "nimble test"; url = "", useHead = true, allowFailu pkg "alea", allowFailure = true pkg "argparse" -pkg "arraymancer", "nim c tests/tests_cpu.nim", allowFailure = true +pkg "arraymancer", "nim c tests/tests_cpu.nim" pkg "ast_pattern_matching", "nim c -r --oldgensym:on tests/test1.nim", allowFailure = true pkg "asyncthreadpool" pkg "awk" @@ -63,7 +63,7 @@ pkg "delaunay" pkg "docopt" pkg "easygl", "nim c -o:egl -r src/easygl.nim", "https://github.com/jackmott/easygl" pkg "elvis" -pkg "fidget", allowFailure = true +pkg "fidget" pkg "fragments", "nim c -r fragments/dsl.nim" pkg "fusion" pkg "gara" @@ -91,7 +91,7 @@ pkg "memo" pkg "msgpack4nim", "nim c -r tests/test_spec.nim" pkg "nake", "nim c nakefile.nim" pkg "neo", "nim c -d:blas=openblas tests/all.nim" -pkg "nesm", "nimble tests", allowFailure = true # notice plural 'tests' +pkg "nesm", "nimble tests" # notice plural 'tests' pkg "netty" pkg "nico", allowFailure = true pkg "nicy", "nim c -r src/nicy.nim" |