mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-21 07:11:13 +00:00
ba70381346
ci/woodpecker/push/02-build-push Pipeline failed
- Changed paths in documentation and configuration files to reflect the new naming convention for the NetVLAD model, transitioning from `models/netvlad/netvlad.pt` to `models/net_vlad/net_vlad.pt`. - Updated the `.gitignore` to include additional file types and directories related to input data and locally-generated evidence frames. - Removed the old NetVLAD checkpoint file as part of the transition to the new naming scheme. These changes ensure consistency across the project and improve the management of generated files.
88 lines
1.5 KiB
Plaintext
88 lines
1.5 KiB
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/
|
|
|
|
# Problem-folder flight-log inputs (binary, out-of-band)
|
|
_docs/00_problem/input_data/**/*.tlog
|
|
_docs/00_problem/input_data/**/*.mp4
|
|
_docs/00_problem/input_data/**/*.h264
|
|
_docs/00_problem/input_data/**/*.mkv
|
|
_docs/00_problem/input_data/**/*.zip
|
|
|
|
# Locally-generated evidence frames for extraction fixtures (large, regenerable)
|
|
_docs/00_problem/input_data/**/frames_src/
|
|
_docs/00_problem/input_data/**/frames_optA/
|
|
_docs/00_problem/input_data/**/frames_optB/
|
|
_docs/00_problem/input_data/**/frames_optC/
|
|
|
|
# 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/
|
|
|
|
# Local scratch / one-off diagnostics
|
|
_scratch/
|
|
|
|
# Secrets
|
|
.env
|
|
.env.local
|
|
.env.test
|
|
*.key
|
|
!tests/fixtures/mavlink_signing/dev_key
|
|
|
|
# Deploy rollback bookmark (written by scripts/stop-services.sh)
|
|
.previous-tags.env
|