docker: install dynamo nightly in the dev image for rapid iteration/testing (#29634)
Co-authored-by: Kangyan Zhou <zky314343421@gmail.com> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Kangyan Zhou
Claude Opus 4.8
parent
54e71506b3
commit
b6907d9664
@@ -61,11 +61,13 @@ jobs:
|
||||
echo "checkout_ref=" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
# Determine extra build args
|
||||
# Determine extra build args. INSTALL_DYNAMO=1 installs the ai-dynamo
|
||||
# nightly here only; release-docker.yml / release-docker-runtime.yml
|
||||
# leave it at the Dockerfile default (0), keeping it out of releases.
|
||||
if [ "${{ github.event_name }}" = "schedule" ]; then
|
||||
echo "extra_build_args=--build-arg USE_LATEST_SGLANG=1 --build-arg CMAKE_BUILD_PARALLEL_LEVEL=\$(nproc)" >> $GITHUB_OUTPUT
|
||||
echo "extra_build_args=--build-arg USE_LATEST_SGLANG=1 --build-arg INSTALL_DYNAMO=1 --build-arg CMAKE_BUILD_PARALLEL_LEVEL=\$(nproc)" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "extra_build_args=--build-arg BRANCH_TYPE=local --build-arg CMAKE_BUILD_PARALLEL_LEVEL=\$(nproc)" >> $GITHUB_OUTPUT
|
||||
echo "extra_build_args=--build-arg BRANCH_TYPE=local --build-arg INSTALL_DYNAMO=1 --build-arg CMAKE_BUILD_PARALLEL_LEVEL=\$(nproc)" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
# Determine tag suffix
|
||||
|
||||
Reference in New Issue
Block a user