09f462f467
CI / test (push) Has been cancelled
CI / verify (push) Has been cancelled
Clients CI / build-server (push) Has been cancelled
Clients CI / test-python (push) Has been cancelled
Clients CI / test-javascript (push) Has been cancelled
Clients CI / test-nim (push) Has been cancelled
Clients CI / test-rust (push) Has been cancelled
- known-limitations, deployment runbook, release checklist - prod compose requires JWT secret; BARADB_ENV=production fail-closed - scripts/backup-restore-drill.sh (backup → wipe → restore → verify) - version bump 1.2.0 (nimble, Dockerfile, health, CHANGELOG dated)
51 lines
2.1 KiB
Nim
51 lines
2.1 KiB
Nim
# Package
|
|
version = "1.2.0"
|
|
author = "BaraDB Team"
|
|
description = "BaraDB — Multimodal database written in Nim"
|
|
license = "BSD-3-Clause"
|
|
srcDir = "src"
|
|
bin = @["baradadb", "baramcp"]
|
|
binDir = "build"
|
|
|
|
# Dependencies
|
|
requires "nim >= 2.2.0"
|
|
requires "https://github.com/katehonz/hunos >= 1.3.0"
|
|
requires "https://github.com/katehonz/jwt-nim-baraba#fbe084b" # v2.1.2 - security fixes & Nim 2.2 compat
|
|
requires "checksums >= 0.2.0"
|
|
|
|
# Tasks
|
|
task build_debug, "Build debug version":
|
|
exec "nim c --debugger:native --linedir:on -o:build/baradadb src/baradadb.nim"
|
|
exec "nim c --debugger:native --linedir:on -o:build/baramcp src/baramcp.nim"
|
|
|
|
task build_release, "Build release version":
|
|
# mm:arc comes from nim.cfg (ORC crashes under wire INSERT load)
|
|
exec "nim c -d:release --opt:speed -o:build/baradadb src/baradadb.nim"
|
|
exec "nim c -d:release --opt:speed -o:build/baramcp src/baramcp.nim"
|
|
|
|
task test, "Run all tests":
|
|
# Smoke test talks to ./build/baradadb over TCP — build it first.
|
|
exec "nim c -o:build/baradadb src/baradadb.nim"
|
|
# Quick embedded suites first, heavy fuzz/stress suites last.
|
|
for t in ["test_minimal", "test_all", "bugfix_test", "join_tests", "test_lock",
|
|
"test_schema_persist", "test_storage_hardening", "tla_faithfulness",
|
|
"nimforum_smoke_test", "raft_e2e_test", "raft_writes_e2e_test",
|
|
"fuzz_test", "prop_test",
|
|
"test_wire_insert_stress", "stress_test"]:
|
|
exec "nim c -r tests/" & t & ".nim"
|
|
|
|
task bench, "Run embedded micro-benchmarks (in-process)":
|
|
exec "nim c -d:release -r benchmarks/bench_all.nim"
|
|
|
|
task bench_pg, "Run PostgreSQL client-server micro-benchmarks":
|
|
exec "python3 benchmarks/pg_bench.py"
|
|
|
|
task bench_fair, "Fair multi-tier benches (SQLite embedded + optional PG/HTTP)":
|
|
exec "python3 benchmarks/fair_bench.py"
|
|
|
|
task bench_report, "Generate fair comparison report (needs fair_bench first)":
|
|
exec "python3 benchmarks/generate_report.py --fair"
|
|
|
|
task bench_report_legacy, "Legacy mixed-tier report (PG C/S vs BaraDB embedded — unfair)":
|
|
exec "python3 benchmarks/generate_report.py"
|