Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
5721dfe3
Unverified
Commit
5721dfe3
authored
Apr 23, 2026
by
Anant Sharma
Committed by
GitHub
Apr 23, 2026
Browse files
ci: restrict dynamo-pipeline test markers to pre_merge only (#8634)
Signed-off-by:
Anant Sharma
<
anants@nvidia.com
>
parent
bdf01611
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
6 deletions
+14
-6
.github/workflows/nightly-ci.yml
.github/workflows/nightly-ci.yml
+7
-3
.github/workflows/post-merge-ci.yml
.github/workflows/post-merge-ci.yml
+7
-3
No files found.
.github/workflows/nightly-ci.yml
View file @
5721dfe3
...
@@ -131,9 +131,13 @@ jobs:
...
@@ -131,9 +131,13 @@ jobs:
fresh_builder
:
true
fresh_builder
:
true
no_cache
:
true
no_cache
:
true
build_timeout_minutes
:
90
build_timeout_minutes
:
90
cpu_parallel_test_markers
:
'
parallel
and
not
(vllm
or
sglang
or
trtllm)
and
(gpu_0)'
# TODO: widen beyond `pre_merge` — today it picks up tests
cpu_sequential_test_markers
:
'
not
parallel
and
not
(vllm
or
sglang
or
trtllm)
and
(gpu_0)'
# (e.g. fault_tolerance/deploy/*) that fail in this container-only
gpu_test_markers
:
'
none
and
gpu_1'
# 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
secrets
:
inherit
# ============================================================================
# ============================================================================
...
...
.github/workflows/post-merge-ci.yml
View file @
5721dfe3
...
@@ -125,9 +125,13 @@ jobs:
...
@@ -125,9 +125,13 @@ jobs:
uses
:
./.github/workflows/dynamo-pipeline.yml
uses
:
./.github/workflows/dynamo-pipeline.yml
with
:
with
:
builder_name
:
b-${{ github.run_id }}-${{ github.run_attempt }}
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)'
# TODO: widen to include `post_merge` — today it picks up tests
cpu_sequential_test_markers
:
'
(pre_merge
or
post_merge)
and
not
parallel
and
not
(vllm
or
sglang
or
trtllm)
and
(gpu_0)'
# (e.g. fault_tolerance/deploy/*) that fail in this container-only
gpu_test_markers
:
'
(pre_merge
or
post_merge)
and
none
and
gpu_1'
# 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
secrets
:
inherit
# ============================================================================
# ============================================================================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment