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
a34f52cf
Unverified
Commit
a34f52cf
authored
Oct 27, 2025
by
Alec
Committed by
GitHub
Oct 27, 2025
Browse files
chore: update to match new gitlab config (#3925)
Signed-off-by:
alec-flowers
<
aflowers@nvidia.com
>
parent
9b6c4f91
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
5 deletions
+19
-5
.github/workflows/trigger_ci.yml
.github/workflows/trigger_ci.yml
+19
-5
No files found.
.github/workflows/trigger_ci.yml
View file @
a34f52cf
...
@@ -81,23 +81,37 @@ jobs:
...
@@ -81,23 +81,37 @@ jobs:
#!/bin/bash -e
#!/bin/bash -e
declare -A ci_variables
declare -A ci_variables
# Set ENABLE_PREMERGE to true by default
ci_variables["ENABLE_PREMERGE"]="true"
# Override to false if validation workflow is running
if [[ "${{ vars.ALLOW_GITLAB_TEST_SKIP }}" == "1" && "${{ steps.check_workflow.outputs.skip_ci }}" == "true" ]]; then
if [[ "${{ vars.ALLOW_GITLAB_TEST_SKIP }}" == "1" && "${{ steps.check_workflow.outputs.skip_ci }}" == "true" ]]; then
echo "Github Workflow has run and
RUN
_PRE
_
MERGE
_TESTS
variable value is False"
echo "Github Workflow has run and
ENABLE
_PREMERGE variable value is False"
ci_variables["
RUN
_PRE
_
MERGE
_TESTS
"]="false"
ci_variables["
ENABLE
_PREMERGE"]="false"
fi
fi
# Build space-separated FRAMEWORKS variable
frameworks=""
if [ "${{ steps.src_changes.outputs.vllm }}" == "true" ]; then
if [ "${{ steps.src_changes.outputs.vllm }}" == "true" ]; then
ci_variables["RUN_VLLM"]="true
"
frameworks+="vllm
"
fi
fi
if [ "${{ steps.src_changes.outputs.trtllm }}" == "true" ]; then
if [ "${{ steps.src_changes.outputs.trtllm }}" == "true" ]; then
ci_variables["RUN_TRTLLM"]="true
"
frameworks+="trtllm
"
fi
fi
if [ "${{ steps.src_changes.outputs.sglang }}" == "true" ]; then
if [ "${{ steps.src_changes.outputs.sglang }}" == "true" ]; then
ci_variables["RUN_SGLANG"]="true
"
frameworks+="sglang
"
fi
fi
# Trim trailing space and set FRAMEWORKS variable if any frameworks detected
frameworks=$(echo "$frameworks" | xargs)
if [ -n "$frameworks" ]; then
ci_variables["FRAMEWORKS"]="$frameworks"
fi
# Set BUILD_ARCHS to empty string to build both amd64 and arm64
ci_variables["BUILD_ARCHS"]=""
ci_args=""
ci_args=""
for key in "${!ci_variables[@]}"; do
for key in "${!ci_variables[@]}"; do
ci_args+="--form variables[$key]=${ci_variables[$key]} "
ci_args+="--form variables[$key]=${ci_variables[$key]} "
...
...
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