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
458b2066
"tests/vscode:/vscode.git/clone" did not exist on "ddd19a68acfd051eb49656fdfb2e52a349245255"
Unverified
Commit
458b2066
authored
Feb 05, 2026
by
Ran Rubin
Committed by
GitHub
Feb 05, 2026
Browse files
ci: deploy tests fix (#5996)
parent
3a9bfc48
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
.github/actions/dynamo-deploy-test/action.yml
.github/actions/dynamo-deploy-test/action.yml
+7
-0
.github/workflows/pr.yaml
.github/workflows/pr.yaml
+3
-1
No files found.
.github/actions/dynamo-deploy-test/action.yml
View file @
458b2066
...
...
@@ -343,6 +343,13 @@ runs:
kubectl get dynamographdeployments -n $NAMESPACE || true
kubectl get pods -n $NAMESPACE || true
kubectl get dynamographdeployments -n $NAMESPACE --no-headers 2>/dev/null \
| awk '$2 == "False" {print $1}' \
| while read -r dep_name; do
echo ">>> DETAILED DESCRIPTION FOR FAILED DEPLOYMENT: $dep_name"
kubectl describe dynamographdeployments "$dep_name" -n $NAMESPACE
done || true
echo "Deleting DynamoGraphDeployment: ${GRAPH_NAME}"
kubectl delete dynamographdeployments ${GRAPH_NAME} -n $NAMESPACE --timeout=60s || true
...
...
.github/workflows/pr.yaml
View file @
458b2066
...
...
@@ -245,6 +245,8 @@ jobs:
BRANCH_SANITIZED="${BRANCH//\//-}"
BRANCH_SANITIZED="${BRANCH_SANITIZED/pull-request/pr}"
BRANCH_SANITIZED="${BRANCH_SANITIZED//./-}"
# Cap at 10 chars
BRANCH_SANITIZED="${BRANCH_SANITIZED:0:10}"
NAMESPACE="gh-id-${{ github.run_id }}-${BRANCH_SANITIZED}-dt"
echo "namespace=${NAMESPACE}" >> "$GITHUB_OUTPUT"
...
...
@@ -450,7 +452,7 @@ jobs:
namespace
:
${{ needs.deploy-operator.outputs.NAMESPACE }}
deployment_file
:
"
deploy/${{
matrix.profile
}}.yaml"
framework
:
${{ env.FRAMEWORK }}
framework_runtime_image
:
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-trtllm-cuda1
2
-amd64
framework_runtime_image
:
${{ secrets.AZURE_ACR_HOSTNAME }}/ai-dynamo/dynamo:${{ github.sha }}-trtllm-cuda1
3
-amd64
model_name
:
"
Qwen/Qwen3-0.6B"
test_identifier
:
${{ env.FRAMEWORK }}_${{ matrix.profile }}_amd64_${{ github.run_id }}_${{ github.run_attempt }}
...
...
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