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
f87e2c58
Unverified
Commit
f87e2c58
authored
Mar 12, 2026
by
Anant Sharma
Committed by
GitHub
Mar 12, 2026
Browse files
ci: disable Docker layer cache for nightly builds (#7305)
Signed-off-by:
Anant Sharma
<
anants@nvidia.com
>
parent
0608acc1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
.github/workflows/build-test-distribute-flavor.yml
.github/workflows/build-test-distribute-flavor.yml
+6
-0
.github/workflows/nightly-ci.yml
.github/workflows/nightly-ci.yml
+6
-3
No files found.
.github/workflows/build-test-distribute-flavor.yml
View file @
f87e2c58
...
...
@@ -307,9 +307,15 @@ jobs:
PUSH_ARGS="--load"
fi
NO_CACHE_ARG=""
if [ "${{ inputs.no_cache }}" == "true" ]; then
NO_CACHE_ARG="--no-cache"
fi
docker buildx build \
--progress=plain \
${PUSH_ARGS} \
${NO_CACHE_ARG} \
--platform linux/${{ inputs.platform }} \
-f container/Dockerfile.test \
--build-arg BASE_IMAGE=${{ steps.calculate-target-tag.outputs.default_target_image_uri }} \
...
...
.github/workflows/nightly-ci.yml
View file @
f87e2c58
...
...
@@ -23,13 +23,14 @@ jobs:
with
:
framework
:
vllm
target
:
runtime
no_cache
:
true
platforms
:
'
["amd64",
"arm64"]'
cuda_versions
:
'
["12.9",
"13.0"]'
extra_tags
:
|
${{ github.ref_name == 'main' && 'main-vllm' || '' }}
${{ github.ref_name == 'main' && format('main-vllm-{0}', github.sha) || '' }}
builder_name
:
b-${{ github.run_id }}-${{ github.run_attempt }}
build_timeout_minutes
:
${{ github.ref_name == 'main' && 120 || 60 }}
build_timeout_minutes
:
180
cpu_only_test_markers
:
'
nightly
and
vllm
and
gpu_0'
single_gpu_test_markers
:
'
nightly
and
vllm
and
gpu_1'
single_gpu_test_timeout_minutes
:
35
...
...
@@ -45,13 +46,14 @@ jobs:
with
:
framework
:
sglang
target
:
runtime
no_cache
:
true
platforms
:
'
["amd64",
"arm64"]'
cuda_versions
:
'
["12.9",
"13.0"]'
extra_tags
:
|
${{ github.ref_name == 'main' && 'main-sglang' || '' }}
${{ github.ref_name == 'main' && format('main-sglang-{0}', github.sha) || '' }}
builder_name
:
b-${{ github.run_id }}-${{ github.run_attempt }}
build_timeout_minutes
:
${{ github.ref_name == 'main' && 120 || 60 }}
build_timeout_minutes
:
180
cpu_only_test_markers
:
'
nightly
and
sglang
and
gpu_0'
single_gpu_test_markers
:
'
nightly
and
sglang
and
gpu_1'
multi_gpu_test_markers
:
'
nightly
and
sglang
and
(gpu_2
or
gpu_4)'
...
...
@@ -66,13 +68,14 @@ jobs:
with
:
framework
:
trtllm
target
:
runtime
no_cache
:
true
platforms
:
'
["amd64",
"arm64"]'
cuda_versions
:
'
["13.1"]'
extra_tags
:
|
${{ github.ref_name == 'main' && 'main-trtllm' || '' }}
${{ github.ref_name == 'main' && format('main-trtllm-{0}', github.sha) || '' }}
builder_name
:
b-${{ github.run_id }}-${{ github.run_attempt }}
build_timeout_minutes
:
${{ github.ref_name == 'main' && 120 || 60 }}
build_timeout_minutes
:
180
cpu_only_test_markers
:
'
nightly
and
trtllm
and
gpu_0'
single_gpu_test_markers
:
'
nightly
and
trtllm
and
gpu_1'
multi_gpu_test_markers
:
'
nightly
and
trtllm
and
(gpu_2
or
gpu_4)'
...
...
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