- Remove gitlinks (160000 mode) for chainfire, flaredb, iam - Add workspace contents as regular tracked files - Update flake.nix to use simple paths instead of builtins.fetchGit This resolves the nix build failure where submodule directories appeared empty in the nix store. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
434 B
Bash
14 lines
434 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Run key Multi-Raft test suites.
|
|
echo "[verify] Running multi-region routing tests..."
|
|
nix develop -c cargo test -q rdb-server::tests::test_multi_region
|
|
|
|
echo "[verify] Running split tests..."
|
|
nix develop -c cargo test -q rdb-server::tests::test_split
|
|
|
|
echo "[verify] Running confchange/move tests..."
|
|
nix develop -c cargo test -q rdb-server::tests::test_confchange_move
|
|
|
|
echo "[verify] Done."
|