All checks were successful
CI/CD / Test (push) Successful in 2m55s
CI/CD / Lint (push) Successful in 1m12s
CI/CD / Integration Tests (push) Successful in 50s
CI/CD / Native Engine Tests (push) Successful in 51s
CI/CD / Build Binary (push) Successful in 45s
CI/CD / Test Release Build (push) Successful in 1m20s
CI/CD / Release Binaries (push) Successful in 10m27s
Features: - Performance analysis package with 2GB/s+ throughput benchmarks - Comprehensive test coverage improvements (exitcode, errors, metadata 100%) - Grafana dashboard updates - Structured error types with codes and remediation guidance Testing: - Added exitcode tests (100% coverage) - Added errors package tests (100% coverage) - Added metadata tests (92.2% coverage) - Improved fs tests (20.9% coverage) - Improved checks tests (20.3% coverage) Performance: - 2,048 MB/s dump throughput (4x target) - 1,673 MB/s restore throughput (5.6x target) - Buffer pooling for bounded memory usage
71 lines
1.0 KiB
Plaintext
Executable File
71 lines
1.0 KiB
Plaintext
Executable File
# Ignore backup artifacts and logs in project subdir
|
|
pg_backups/
|
|
*.tar.gz
|
|
*.dump
|
|
*.sql
|
|
logs/
|
|
*.log
|
|
*.out
|
|
*.trace
|
|
*.err
|
|
|
|
# Ignore built binaries (built fresh via build_all.sh on release)
|
|
/dbbackup
|
|
/dbbackup_*
|
|
/dbbackup-*
|
|
!dbbackup.png
|
|
bin/
|
|
|
|
# Ignore local configuration (may contain IPs/credentials)
|
|
.dbbackup.conf
|
|
|
|
# Ignore session/development notes
|
|
TODO_SESSION.md
|
|
QUICK.md
|
|
QUICK_WINS.md
|
|
|
|
# Ignore test backups
|
|
test-backups/
|
|
test-backups-*/
|
|
|
|
# Ignore development artifacts
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Ignore IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.iml
|
|
|
|
# Ignore test coverage
|
|
*.cover
|
|
coverage.html
|
|
|
|
# Ignore temporary files
|
|
tmp/
|
|
temp/
|
|
CRITICAL_BUGS_FIXED.md
|
|
LEGAL_DOCUMENTATION.md
|
|
LEGAL_*.md
|
|
legal/
|
|
|
|
# Release binaries (uploaded via gh release, not git)
|
|
release/dbbackup_*
|
|
|
|
# Coverage output files
|
|
*_cover.out
|
|
|
|
# Audit and production reports (internal docs)
|
|
EDGE_CASE_AUDIT_REPORT.md
|
|
PRODUCTION_READINESS_AUDIT.md
|
|
CRITICAL_BUGS_FIXED.md
|
|
|
|
# Examples directory (if contains sensitive samples)
|
|
examples/
|
|
|
|
# Local database/test artifacts
|
|
*.db
|
|
*.sqlite
|