覆盖 GOOS-GOARCH 命名约定的所有二进制变体 (spark-mcp-linux-amd64, spark-mcp-darwin-arm64 等). 之前每次交叉编译都会留一个未跟踪的 二进制在仓库根. Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
309 B
Plaintext
29 lines
309 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.eggs/
|
|
build/
|
|
dist/
|
|
|
|
# Virtual env
|
|
.venv/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Data directory (persisted Spark connections / pending jobs)
|
|
data/
|
|
|
|
# Test / coverage
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Build artifacts (cross-compiled binaries)
|
|
spark-mcp-*-*
|