mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-22 16:51:13 +00:00
6ce31587d4
Bugs found during Step 11 (Run Tests) functional gate: 1. e2e/docker/docker-compose.test.yml referenced docker/Dockerfile (doesn't exist). Renamed to docker/companion-tier1.Dockerfile. 2. fdr-output volume declared tmpfs size=64g, which requires actual host RAM. Docker Desktop on macOS has only ~3.8 GiB; tmpfs alloc fails. Switched to a plain named volume (the SUT enforces the 64 GB cap internally per NFT-LIM-02; the volume-layer cap was belt-and- suspenders only). Documented the overlay2+xfs override path for CI runners that support it. 3. Added e2e-results/ to .gitignore (runtime output dir created by the bind-mount). These bugs predate this session; the harness had never been bench-tested end-to-end. Surfacing them was the actual outcome of running test-run. Co-authored-by: Cursor <cursoragent@cursor.com>
67 lines
865 B
Plaintext
67 lines
865 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg
|
|
*.egg-info/
|
|
.eggs/
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
coverage.xml
|
|
htmlcov/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.tox/
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
_skbuild/
|
|
CMakeFiles/
|
|
CMakeCache.txt
|
|
cmake_install.cmake
|
|
Makefile
|
|
compile_commands.json
|
|
|
|
# Native engines and caches
|
|
*.engine
|
|
*.calib
|
|
*.index
|
|
*.faiss
|
|
*.onnx
|
|
*.trt
|
|
|
|
# Test fixtures — large blobs are out-of-band
|
|
tests/fixtures/large_replays/
|
|
tests/fixtures/flight_derkachi/*.mp4
|
|
tests/fixtures/flight_derkachi/*.h264
|
|
tests/fixtures/flight_derkachi/*.tlog
|
|
tests/fixtures/tiles_corpus/*.jpg
|
|
tests/fixtures/tiles_corpus/*.png
|
|
|
|
# Editor / OS noise
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*~
|
|
|
|
# Logs and runtime data
|
|
*.log
|
|
/var/lib/gps-denied/
|
|
fdr_output/
|
|
tile_cache/
|
|
e2e-results/
|
|
|
|
# Secrets
|
|
.env
|
|
.env.local
|
|
*.key
|
|
!tests/fixtures/mavlink_signing/dev_key
|