CI / CI (pull_request) Successful in 11m39s
- .dockerignore: exclude build/cache/docs to reduce build context (59 lines) - Dockerfile: add aggressive cleanup (cache, registry, git) after cargo build - Dockerfile: use --locked flag for reproducible builds - build.yaml: add pre-build disk cleanup (docker + cargo cache) - build.yaml: clean cargo before Docker build to free space - build.yaml: show disk usage before/after for debugging Fixes 'No space left on device' error during Docker build in runner
56 lines
438 B
Plaintext
56 lines
438 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# CI/CD
|
|
.github
|
|
.gitea
|
|
.gitlab-ci.yml
|
|
|
|
# Kubernetes
|
|
k8s/
|
|
helm/
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build artifacts
|
|
target/
|
|
dist/
|
|
build/
|
|
|
|
# Dependencies (will be downloaded fresh)
|
|
.cargo/
|
|
Cargo.lock.bak
|
|
|
|
# Testing
|
|
.coverage
|
|
coverage/
|
|
|
|
# Secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Archives
|
|
*.tar
|
|
*.tar.gz
|
|
*.zip
|
|
|
|
# Node (if any)
|
|
node_modules/
|
|
*.log
|