mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-21 08:41:12 +00:00
bf13549b32
ci/woodpecker/push/02-build-push Pipeline failed
- Enhanced `.env.example` with detailed CMake build flags and replay-mode strategy flags for development and CI environments. - Updated `.gitignore` to include a new deploy rollback bookmark. - Revised `_docs/_autodev_state.md` to reflect the current task status and steps. - Added new lessons to `_docs/LESSONS.md` regarding testing and architectural improvements. - Documented changes in `_docs/02_document/deployment/ci_cd_pipeline.md` to reflect the relaxed OpenCV version pin. - Updated test data documentation in `_docs/02_document/tests/test-data.md` to clarify fixture usage and paths. This commit continues the cycle-1 documentation sync and addresses various configuration updates for improved clarity and functionality.
71 lines
976 B
Plaintext
71 lines
976 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
|
|
e2e/fixtures/sitl_replay/
|
|
|
|
# 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
|
|
|
|
# Deploy rollback bookmark (written by scripts/stop-services.sh)
|
|
.previous-tags.env
|