We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d30f807 commit 766a742Copy full SHA for 766a742
1 file changed
.github/workflows/benchmark-tmpl.yml
@@ -89,6 +89,7 @@ env:
89
DISAGG: ${{ inputs.disagg }}
90
RUN_EVAL: ${{ inputs.run-eval }}
91
EVAL_ONLY: ${{ inputs.eval-only }}
92
+ PYTHONDONTWRITEBYTECODE: '1'
93
94
permissions:
95
contents: read
@@ -101,6 +102,10 @@ jobs:
101
102
steps:
103
- name: Resource cleanup (pre-run)
104
run: &resource-cleanup |
105
+ # Cleanup root-owned files left by containers (e.g. __pycache__) that block
106
+ # actions/checkout clean and workspace removal.
107
+ sudo find . -type d -name __pycache__ -exec rm -rf {} + 2>/dev/null || true
108
+
109
# Cleanup Docker resources
110
if command -v docker >/dev/null 2>&1 && docker info >/dev/null 2>&1; then
111
echo "[Docker] Cleaning up resources ..."
0 commit comments