From bfc3233ebbfb6252bb97207b2039e8b2deb62073 Mon Sep 17 00:00:00 2001 From: Jack Luar Date: Sat, 6 Jun 2026 08:03:52 +0000 Subject: [PATCH] fix(ci): restore HF dataset download in docker-eval job The huggingface-cli download command was accidentally dropped when parallelising the secret CI. Without it, a cold runner cache left ./data empty, the backend never became ready, and the readiness poll ran its full 3600 s timeout on every run. Signed-off-by: Jack Luar --- .github/workflows/ci-secret.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-secret.yaml b/.github/workflows/ci-secret.yaml index 0f4af02e..09e5eb6f 100644 --- a/.github/workflows/ci-secret.yaml +++ b/.github/workflows/ci-secret.yaml @@ -101,6 +101,8 @@ jobs: run: | if [ ! -d "data" ] || [ -z "$(ls -A data 2>/dev/null)" ]; then uv tool install huggingface-hub + huggingface-cli download The-OpenROAD-Project/ORAssistant_RAG_Dataset \ + --repo-type dataset --local-dir ./data else echo "Dataset already cached on runner, skipping download" fi