Some checks failed
Comprehensive CI/CD Pipeline / Build and Test (push) Successful in 3m0s
Comprehensive CI/CD Pipeline / Security Audit (push) Failing after 7s
Comprehensive CI/CD Pipeline / Package Validation (push) Successful in 35s
Comprehensive CI/CD Pipeline / Status Report (push) Has been skipped
- Recovered main.rs from main.rs.old backup after HDD space issue - Fixed bootc dependency issue in Cargo.toml (removed non-existent crate) - Updated todo.txt with realistic 85% completion status - Disk image creation is now fully working (was incorrectly marked as failed) - OSTree integration is working with real ostree commands - Bootloader installation works on actual disk images - Format conversion supports QCOW2, raw, VMDK, ISO, AMI - Added local rootfs support with --rootfs option - Only remaining work: replace placeholder bootc script and add testing
61 lines
602 B
Text
61 lines
602 B
Text
# Rust
|
|
/target/
|
|
**/*.rs.bk
|
|
Cargo.lock
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build artifacts
|
|
*.deb
|
|
*.rpm
|
|
*.tar.gz
|
|
*.zip
|
|
|
|
# Test outputs
|
|
test-*.img
|
|
test-*.qcow2
|
|
test-*.vmdk
|
|
test-*.iso
|
|
test-*.ami
|
|
test-*.raw
|
|
test-ubuntu-*
|
|
test-bootc-*
|
|
test-proper-*
|
|
test-fixed-*
|
|
test-final-*
|
|
test-enhanced-*
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
/tmp/
|
|
*.raw.tmp
|
|
cursor_analyze_apt_ostree_project.md
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# CI/CD
|
|
artifacts/
|
|
CI_SUMMARY.md
|
|
STATUS_REPORT.md
|
|
ARTIFACTS_README.md
|
|
|
|
# Docker
|
|
Dockerfile.local
|
|
docker-compose.override.yml
|
|
|
|
# Local development
|
|
.env
|
|
.env.local
|
|
config.local.toml
|