[CI] Disable gated Llama-2 EAGLE spec tests to unblock Xeon CPU CI (#30995)

This commit is contained in:
Haotong Zou
2026-07-14 09:28:47 +08:00
committed by GitHub
parent 9756f768a6
commit c124bec99d
2 changed files with 10 additions and 2 deletions
+5 -1
View File
@@ -18,7 +18,11 @@ from sglang.test.kits.spec_server_kits import (
from sglang.test.server_fixtures.spec_eagle_fixture import EagleLlama2Base
# Measured 780s all-green on a 40-core GNR socket (1 launch + 18 methods).
register_cpu_ci(est_time=800, suite="base-b-test-cpu")
register_cpu_ci(
est_time=800,
suite="base-b-test-cpu",
disabled="EagleLlama2Base needs gated meta-llama/Llama-2-7b-chat-hf",
)
_KITS = (
SpecCorrectnessKit,
@@ -19,7 +19,11 @@ from sglang.test.kits.spec_server_kits import (
from sglang.test.server_fixtures.spec_eagle_fixture import EagleLlama2Base
# Measured 830s all-green on a 40-core GNR socket (1 launch + 14 methods).
register_cpu_ci(est_time=850, suite="base-b-test-cpu")
register_cpu_ci(
est_time=850,
suite="base-b-test-cpu",
disabled="EagleLlama2Base needs gated meta-llama/Llama-2-7b-chat-hf",
)
class _Core(EagleLlama2Base):