"git@developer.sourcefind.cn:norm/vllm.git" did not exist on "96b6f475dda40a0c7d557f73c36fe09c07be2e9c"
Unverified Commit 77e928d0 authored by Sai Enduri's avatar Sai Enduri Committed by GitHub
Browse files

Update server timeout time in AMD CI. (#6953)

parent 515ef4fa
...@@ -284,9 +284,9 @@ jobs: ...@@ -284,9 +284,9 @@ jobs:
run: bash scripts/amd_ci_install_dependency.sh run: bash scripts/amd_ci_install_dependency.sh
- name: Run test - name: Run test
timeout-minutes: 40 timeout-minutes: 60
run: | 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: finish:
if: always() if: always()
......
...@@ -109,6 +109,9 @@ else: ...@@ -109,6 +109,9 @@ else:
) )
DEFAULT_URL_FOR_TEST = f"http://127.0.0.1:{DEFAULT_PORT_FOR_SRT_TEST_RUNNER + 1000}" 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): def call_generate_lightllm(prompt, temperature, max_tokens, stop=None, url=None):
assert url is not None assert url is not None
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment