Disable HF Xet storage to fix CI export timeouts#19358
Conversation
HuggingFace's Xet storage backend stalls mid-download on CI runners, causing the 90-minute job timeout to fire before model weights finish downloading. Force standard HTTP downloads instead.
This PR needs a
|
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Forces HuggingFace Hub downloads to bypass the Xet storage backend to prevent CI stalls/timeouts when exporting model artifacts.
Changes:
- Disable HF Hub’s Xet backend via environment variable to ensure standard HTTP downloads during export.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| exit 1 | ||
| fi | ||
|
|
||
| export HF_HUB_DISABLE_XET=1 |
| @@ -67,6 +67,8 @@ if [ -z "${1:-}" ]; then | |||
| exit 1 | |||
| fi | |||
|
|
|||
HuggingFace's Xet storage backend stalls mid-download on CI runners, causing the 90-minute job timeout to fire before model weights finish downloading. Force standard HTTP downloads instead.
(from debug logs in #19352)