Unverified Commit 5721dfe3 authored by Anant Sharma's avatar Anant Sharma Committed by GitHub
Browse files

ci: restrict dynamo-pipeline test markers to pre_merge only (#8634)


Signed-off-by: default avatarAnant Sharma <anants@nvidia.com>
parent bdf01611
......@@ -131,9 +131,13 @@ jobs:
fresh_builder: true
no_cache: true
build_timeout_minutes: 90
cpu_parallel_test_markers: 'parallel and not (vllm or sglang or trtllm) and (gpu_0)'
cpu_sequential_test_markers: 'not parallel and not (vllm or sglang or trtllm) and (gpu_0)'
gpu_test_markers: 'none and gpu_1'
# TODO: widen beyond `pre_merge` — today it picks up tests
# (e.g. fault_tolerance/deploy/*) that fail in this container-only
# context. Matches the coverage of the old container-validation-dynamo
# workflow.
cpu_parallel_test_markers: 'pre_merge and parallel and not (vllm or sglang or trtllm) and (gpu_0)'
cpu_sequential_test_markers: 'pre_merge and not parallel and not (vllm or sglang or trtllm) and (gpu_0)'
gpu_test_markers: 'pre_merge and none and gpu_1'
secrets: inherit
# ============================================================================
......
......@@ -125,9 +125,13 @@ jobs:
uses: ./.github/workflows/dynamo-pipeline.yml
with:
builder_name: b-${{ github.run_id }}-${{ github.run_attempt }}
cpu_parallel_test_markers: '(pre_merge or post_merge) and parallel and not (vllm or sglang or trtllm) and (gpu_0)'
cpu_sequential_test_markers: '(pre_merge or post_merge) and not parallel and not (vllm or sglang or trtllm) and (gpu_0)'
gpu_test_markers: '(pre_merge or post_merge) and none and gpu_1'
# TODO: widen to include `post_merge` — today it picks up tests
# (e.g. fault_tolerance/deploy/*) that fail in this container-only
# context. Matches the coverage of the old container-validation-dynamo
# workflow.
cpu_parallel_test_markers: 'pre_merge and parallel and not (vllm or sglang or trtllm) and (gpu_0)'
cpu_sequential_test_markers: 'pre_merge and not parallel and not (vllm or sglang or trtllm) and (gpu_0)'
gpu_test_markers: 'pre_merge and none and gpu_1'
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