Unverified Commit 3dd5266e authored by Dmitry Tokarev's avatar Dmitry Tokarev Committed by GitHub
Browse files

chore: Set timeout for builds on main in post_merge flow to 120 min (#6208)


Signed-off-by: default avatarDmitry Tokarev <dtokarev@nvidia.com>
Co-authored-by: default avatarDillon Cullinan <dcullinan@nvidia.com>
parent 7e16e8db
...@@ -185,6 +185,7 @@ jobs: ...@@ -185,6 +185,7 @@ jobs:
${{ github.ref_name == 'main' && format('main-vllm-{0}', github.sha) || '' }} ${{ github.ref_name == 'main' && format('main-vllm-{0}', github.sha) || '' }}
builder_name: ${{ needs.changed-files.outputs.builder_name }} builder_name: ${{ needs.changed-files.outputs.builder_name }}
test_gpu_timeout_minutes: 35 test_gpu_timeout_minutes: 35
build_timeout_minutes: ${{ github.ref_name == 'main' && 120 || 60 }}
secrets: inherit secrets: inherit
# ============================================================================ # ============================================================================
...@@ -203,6 +204,7 @@ jobs: ...@@ -203,6 +204,7 @@ jobs:
${{ github.ref_name == 'main' && 'main-sglang' || '' }} ${{ github.ref_name == 'main' && 'main-sglang' || '' }}
${{ github.ref_name == 'main' && format('main-sglang-{0}', github.sha) || '' }} ${{ github.ref_name == 'main' && format('main-sglang-{0}', github.sha) || '' }}
builder_name: ${{ needs.changed-files.outputs.builder_name }} builder_name: ${{ needs.changed-files.outputs.builder_name }}
build_timeout_minutes: ${{ github.ref_name == 'main' && 120 || 60 }}
secrets: inherit secrets: inherit
# ============================================================================ # ============================================================================
...@@ -221,6 +223,7 @@ jobs: ...@@ -221,6 +223,7 @@ jobs:
${{ github.ref_name == 'main' && 'main-trtllm' || '' }} ${{ github.ref_name == 'main' && 'main-trtllm' || '' }}
${{ github.ref_name == 'main' && format('main-trtllm-{0}', github.sha) || '' }} ${{ github.ref_name == 'main' && format('main-trtllm-{0}', github.sha) || '' }}
builder_name: ${{ needs.changed-files.outputs.builder_name }} builder_name: ${{ needs.changed-files.outputs.builder_name }}
build_timeout_minutes: ${{ github.ref_name == 'main' && 120 || 60 }}
secrets: inherit secrets: inherit
......
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