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
927dcbfc
Unverified
Commit
927dcbfc
authored
Oct 28, 2025
by
Tushar Sharma
Committed by
GitHub
Oct 28, 2025
Browse files
ci: Enable github arm workflow for sglang (#3940)
Signed-off-by:
Tushar Sharma
<
tusharma@nvidia.com
>
parent
cc4c3516
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
21 deletions
+12
-21
.github/workflows/container-validation-backends.yml
.github/workflows/container-validation-backends.yml
+12
-21
No files found.
.github/workflows/container-validation-backends.yml
View file @
927dcbfc
...
@@ -160,17 +160,14 @@ jobs:
...
@@ -160,17 +160,14 @@ jobs:
sglang
:
sglang
:
needs
:
changed-files
needs
:
changed-files
if
:
needs.changed-files.outputs.has_code_changes == 'true'
if
:
needs.changed-files.outputs.has_code_changes == 'true'
# OPS-1140: Uncomment this for sglang arm switch to wideep
strategy
:
# strategy:
fail-fast
:
false
# fail-fast: false
matrix
:
# matrix:
platform
:
# platform:
-
{
arch
:
amd64
,
runner
:
gpu-l40-amd64
}
# - { arch: amd64, runner: gpu-l40-amd64 }
-
{
arch
:
arm64
,
runner
:
cpu-arm-r8g-4xlarge
}
# - { arch: arm64, runner: cpu-arm-r8g-4xlarge }
name
:
sglang (${{ matrix.platform.arch }})
# name: sglang (${{ matrix.platform.arch }})
runs-on
:
${{ matrix.platform.runner }}
# runs-on: ${{ matrix.platform.runner }}
# OPS-1140: Remove this runs-on line, replaced with the above line
runs-on
:
gpu-l40-amd64
steps
:
steps
:
-
name
:
Checkout repository
-
name
:
Checkout repository
uses
:
actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
# v4.3.0
uses
:
actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
# v4.3.0
...
@@ -181,9 +178,7 @@ jobs:
...
@@ -181,9 +178,7 @@ jobs:
with
:
with
:
framework
:
sglang
framework
:
sglang
target
:
runtime
target
:
runtime
platform
:
'
linux/amd64'
platform
:
'
linux/${{
matrix.platform.arch
}}'
# OPS-1140: Replace the above line with the uncommented below line
# platform: 'linux/${{ matrix.platform.arch }}'
ngc_ci_access_token
:
${{ secrets.NGC_CI_ACCESS_TOKEN }}
ngc_ci_access_token
:
${{ secrets.NGC_CI_ACCESS_TOKEN }}
ci_token
:
${{ secrets.CI_TOKEN }}
ci_token
:
${{ secrets.CI_TOKEN }}
aws_default_region
:
${{ secrets.AWS_DEFAULT_REGION }}
aws_default_region
:
${{ secrets.AWS_DEFAULT_REGION }}
...
@@ -196,9 +191,7 @@ jobs:
...
@@ -196,9 +191,7 @@ jobs:
uses
:
./.github/actions/docker-tag-push
uses
:
./.github/actions/docker-tag-push
with
:
with
:
local_image
:
${{ steps.build-image.outputs.image_tag }}
local_image
:
${{ steps.build-image.outputs.image_tag }}
push_tag
:
ai-dynamo/dynamo:${{ github.sha }}-sglang-amd64
push_tag
:
ai-dynamo/dynamo:${{ github.sha }}-sglang-${{ matrix.platform.arch }}
# OPS-1140: Replace the above line with the uncommented below line
# push_tag: ai-dynamo/dynamo:${{ github.sha }}-sglang-${{ matrix.platform.arch }}
# OPS-1145: Switch aws_push to true
# OPS-1145: Switch aws_push to true
aws_push
:
'
false'
aws_push
:
'
false'
azure_push
:
'
true'
azure_push
:
'
true'
...
@@ -209,8 +202,7 @@ jobs:
...
@@ -209,8 +202,7 @@ jobs:
azure_acr_password
:
${{ secrets.AZURE_ACR_PASSWORD }}
azure_acr_password
:
${{ secrets.AZURE_ACR_PASSWORD }}
-
name
:
Run unit tests
-
name
:
Run unit tests
# OPS-1140: Uncomment the below line
if
:
${{ matrix.platform.arch != 'arm64' }}
# if: ${{ matrix.platform.arch != 'arm64' }}
uses
:
./.github/actions/pytest
uses
:
./.github/actions/pytest
with
:
with
:
image_tag
:
${{ steps.build-image.outputs.image_tag }}
image_tag
:
${{ steps.build-image.outputs.image_tag }}
...
@@ -219,8 +211,7 @@ jobs:
...
@@ -219,8 +211,7 @@ jobs:
test_type
:
"
unit"
test_type
:
"
unit"
platform_arch
:
${{ matrix.platform.arch }}
platform_arch
:
${{ matrix.platform.arch }}
-
name
:
Run e2e tests
-
name
:
Run e2e tests
# OPS-1140: Uncomment the below line
if
:
${{ matrix.platform.arch != 'arm64' }}
# if: ${{ matrix.platform.arch != 'arm64' }}
uses
:
./.github/actions/pytest
uses
:
./.github/actions/pytest
with
:
with
:
image_tag
:
${{ steps.build-image.outputs.image_tag }}
image_tag
:
${{ steps.build-image.outputs.image_tag }}
...
...
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