From 27ebaf3f4d127c591e7dbc0381b07b97dd5aaff0 Mon Sep 17 00:00:00 2001 From: saienduri Date: Sat, 7 Jun 2025 11:44:37 -0700 Subject: [PATCH 1/2] update CI server timeout --- python/sglang/test/test_utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/sglang/test/test_utils.py b/python/sglang/test/test_utils.py index 607a53b63290..0aacec4975c5 100644 --- a/python/sglang/test/test_utils.py +++ b/python/sglang/test/test_utils.py @@ -109,6 +109,9 @@ def is_in_amd_ci(): ) DEFAULT_URL_FOR_TEST = f"http://127.0.0.1:{DEFAULT_PORT_FOR_SRT_TEST_RUNNER + 1000}" +if is_in_amd_ci(): + DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH = 3000 + def call_generate_lightllm(prompt, temperature, max_tokens, stop=None, url=None): assert url is not None From 81f1078db2da022dd51b5060bbbe208fb0e06557 Mon Sep 17 00:00:00 2001 From: saienduri Date: Sat, 7 Jun 2025 11:45:55 -0700 Subject: [PATCH 2/2] update deepseek timeout --- .github/workflows/pr-test-amd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-test-amd.yml b/.github/workflows/pr-test-amd.yml index daa4176fc005..d7de3ac73eb9 100644 --- a/.github/workflows/pr-test-amd.yml +++ b/.github/workflows/pr-test-amd.yml @@ -284,9 +284,9 @@ jobs: run: bash scripts/amd_ci_install_dependency.sh - name: Run test - timeout-minutes: 40 + timeout-minutes: 60 run: | - bash scripts/amd_ci_exec.sh python3 run_suite.py --suite per-commit-8-gpu-amd + bash scripts/amd_ci_exec.sh python3 run_suite.py --suite per-commit-8-gpu-amd --timeout-per-file 3600 finish: if: always()