docker-build-push / build-push-deploy (push) Successful in 33s
Build/test/push now runs as .gitea/workflows/docker-build-push.yml, pushing to gitea.blairhaus.net/pmb/finger and auto-deploying to mammut and bsd on every push to main, since GitHub is no longer in use. Removes the now-dead .github workflows, .codecov.yml, and their README badges.
46 lines
405 B
Plaintext
46 lines
405 B
Plaintext
# Build directories
|
|
builddir/
|
|
testbuild/
|
|
|
|
# Rust port (separate build, own Dockerfile)
|
|
rust/
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
|
|
# CI/CD
|
|
.github/
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker files
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose.yml
|
|
|
|
# Coverage reports
|
|
.codecov.yml
|
|
coverage/
|
|
*.gcov
|
|
*.gcda
|
|
*.gcno
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.log
|