fix(ci): add --threads:on to all nim c commands

Commit 6aaabb5 added std/locks usage in vector/engine.nim (HNSW thread-safety).
std/locks requires --threads:on. Local builds worked because /etc/nim/nim.cfg
had threads:on, but GitHub Actions runners (setup-nim-action) compile without
threads by default, causing the test job to fail silently at runtime.

Also updated baradadb.nimble tasks for consistency.

Fixes GitHub Actions CI failure on test / clients-ci workflows.
This commit is contained in:
2026-05-13 11:57:09 +03:00
parent c0bd3dff86
commit f6781c107e
3 changed files with 12 additions and 12 deletions
+4 -4
View File
@@ -15,13 +15,13 @@ requires "checksums >= 0.2.0"
# Tasks
task build_debug, "Build debug version":
exec "nim c -d:ssl --debugger:native --linedir:on -o:build/baradadb src/baradadb.nim"
exec "nim c -d:ssl --threads:on --debugger:native --linedir:on -o:build/baradadb src/baradadb.nim"
task build_release, "Build release version":
exec "nim c -d:ssl -d:release --opt:speed -o:build/baradadb src/baradadb.nim"
exec "nim c -d:ssl --threads:on -d:release --opt:speed -o:build/baradadb src/baradadb.nim"
task test, "Run all tests":
exec "nim c --path:src -d:ssl -r tests/test_all.nim"
exec "nim c --path:src -d:ssl --threads:on -r tests/test_all.nim"
task bench, "Run benchmarks":
exec "nim c --path:src -d:ssl -d:release -r benchmarks/bench_all.nim"
exec "nim c --path:src -d:ssl --threads:on -d:release -r benchmarks/bench_all.nim"