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
78359046
Unverified
Commit
78359046
authored
Oct 31, 2025
by
Dillon Cullinan
Committed by
GitHub
Oct 31, 2025
Browse files
ci: OPS-1744: Remove tool installs and test new CI image (#3991)
Signed-off-by:
Dillon Cullinan
<
dcullinan@nvidia.com
>
parent
7f0ed081
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
31 deletions
+1
-31
.github/actions/docker-build/action.yml
.github/actions/docker-build/action.yml
+0
-6
.github/workflows/container-validation-backends.yml
.github/workflows/container-validation-backends.yml
+1
-25
No files found.
.github/actions/docker-build/action.yml
View file @
78359046
...
...
@@ -62,12 +62,6 @@ runs:
uses
:
docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435
#v3.11.1
with
:
driver
:
docker
-
name
:
Install awscli
shell
:
bash
run
:
|
curl "https://awscli.amazonaws.com/awscli-exe-linux-$(uname -m).zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
-
name
:
Login to ECR
shell
:
bash
env
:
...
...
.github/workflows/container-validation-backends.yml
View file @
78359046
...
...
@@ -55,12 +55,6 @@ jobs:
uses
:
docker/setup-buildx-action@v3
with
:
driver
:
docker
-
name
:
Install awscli
shell
:
bash
run
:
|
curl "https://awscli.amazonaws.com/awscli-exe-linux-$(uname -m).zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
-
name
:
Login to ECR
shell
:
bash
env
:
...
...
@@ -369,7 +363,7 @@ jobs:
MODEL_NAME
:
"
Qwen/Qwen3-0.6B"
steps
:
&deploy-test-steps
-
uses
:
actions/checkout@v4
-
name
:
Set namespace
and install dependencies
-
name
:
Set namespace
run
:
|
# Set namespace using FRAMEWORK env var
PROFILE_SANITIZED="${{ matrix.profile }}"
...
...
@@ -377,24 +371,6 @@ jobs:
echo "NAMESPACE=gh-job-id-${{ github.run_id }}-${FRAMEWORK}-${PROFILE_SANITIZED}" >> $GITHUB_ENV
set -x
# Install dependencies
sudo apt-get update && sudo apt-get install -y curl bash openssl gettext git jq
# Install yq
echo "Installing yq..."
curl -L https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -o yq
sudo chmod 755 yq
sudo mv yq /usr/local/bin/
# Install Helm
echo "Installing Helm..."
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
sudo chmod 700 get_helm.sh
sudo ./get_helm.sh
# Install kubectl
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
sudo chmod 755 kubectl
sudo mv kubectl /usr/local/bin/
# Setup kubeconfig
echo "${{ secrets.AZURE_AKS_CI_KUBECONFIG_B64 }}" | base64 -d > .kubeconfig
chmod 600 .kubeconfig
...
...
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