46 lines
2.3 KiB
Plaintext
46 lines
2.3 KiB
Plaintext
# DGR-002 — exact commands, in order. Run from the repository root.
|
|
# Interpreter: <repo>/.venv/bin/python (CPython 3.14.6). Deterministic, GPU-free,
|
|
# no model download, no API credits.
|
|
|
|
# --- toolchain (this machine had no protoc, no cmake, no protobuf C++ headers)
|
|
.venv/bin/python -m pip install grpcio-tools==1.82.1 grpcio==1.82.1 cmake==4.4.0
|
|
scripts/bootstrap_native_toolchain.sh /tmp/pbsrc/install # protobuf C++ 33.1 + abseil 20250814.1
|
|
|
|
# --- schema generation (Python stubs; committed)
|
|
.venv/bin/python scripts/generate_native_protocol.py
|
|
.venv/bin/python scripts/generate_native_protocol.py --check # -> "generated stubs are up to date"
|
|
|
|
# --- cross-language conformance vectors (committed)
|
|
.venv/bin/python scripts/generate_protocol_goldens.py
|
|
.venv/bin/python scripts/generate_protocol_goldens.py --check # -> "conformance vectors are up to date"
|
|
|
|
# --- C++ generation, build and conformance test
|
|
cmake -S packages/node/native -B build/native -DCMAKE_PREFIX_PATH=/tmp/pbsrc/install
|
|
cmake --build build/native -j"$(nproc)"
|
|
ctest --test-dir build/native --output-on-failure # -> 1/1 Passed
|
|
cmp build/native/cpp_roundtrip.binpb packages/node/native/testdata/session_request_golden.binpb
|
|
|
|
# --- Python tests
|
|
.venv/bin/python -m pytest -q tests/test_native_shard_protocol.py # -> 29 passed
|
|
.venv/bin/python -m pytest -q # full suite
|
|
|
|
# --- repository gates
|
|
.venv/bin/python -m compileall -q packages tests
|
|
git diff --check
|
|
|
|
# --- independent controller review after Ralph
|
|
PYTHONPATH=packages/node .venv/bin/python -m pytest -q tests/test_native_shard_protocol.py
|
|
# -> 45 passed
|
|
PYTHONPATH=packages/node .venv/bin/python -m pytest -q \
|
|
tests/test_native_shard_protocol.py tests/test_activation_compression.py
|
|
# -> 51 passed
|
|
PYTHONPATH=packages/node .venv/bin/python -m pytest -q
|
|
# -> final exact-code run: 728 passed, 12 skipped
|
|
for i in 1 2 3; do PYTHONPATH=packages/node .venv/bin/python -m pytest -q \
|
|
tests/test_tracker_routing.py::test_tracker_dashboard_can_cancel_inflight_proxy; done
|
|
# -> 1 passed, 1 passed, 1 passed
|
|
# clean minimum-runtime venv: protobuf==7.35.0 grpcio==1.82.1
|
|
# generated pb2 + pb2_grpc imports and one-byte codec round trip -> passed
|
|
# The user chose to rely on Ralph's recorded successful C++ CMake/CTest run
|
|
# rather than repeat deletion of an isolated generated build directory.
|