From 2b8b9d8496af548804ec94fe35c9afba3e4686fe Mon Sep 17 00:00:00 2001 From: Cheng Wan <54331508+ch-wan@users.noreply.github.com> Date: Sun, 16 Nov 2025 12:49:01 -0800 Subject: [PATCH] [CI] use cached deepep installation in gb200 CI (#13388) --- scripts/ci/ci_install_deepep.sh | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/scripts/ci/ci_install_deepep.sh b/scripts/ci/ci_install_deepep.sh index ef8a89072..a569ec1ca 100755 --- a/scripts/ci/ci_install_deepep.sh +++ b/scripts/ci/ci_install_deepep.sh @@ -18,12 +18,9 @@ if [ "$ARCH" != "x86_64" ] && [ "$ARCH" != "aarch64" ]; then exit 1 fi -# It seems GB200 ci runner preinstalls some wrong version of deep_ep, so we cannot rely on it. -if [ "$GRACE_BLACKWELL" != "1" ]; then - if python3 -c "import deep_ep" >/dev/null 2>&1; then - echo "deep_ep is already installed or importable. Skipping installation." - exit 0 - fi +if python3 -c "import deep_ep" >/dev/null 2>&1; then + echo "deep_ep is already installed or importable. Skipping installation." + exit 0 fi # Install system dependencies