Skip to content

Commit 7835904

Browse files
ci: OPS-1744: Remove tool installs and test new CI image (#3991)
Signed-off-by: Dillon Cullinan <[email protected]>
1 parent 7f0ed08 commit 7835904

File tree

2 files changed

+1
-31
lines changed

2 files changed

+1
-31
lines changed

.github/actions/docker-build/action.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,6 @@ runs:
6262
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 #v3.11.1
6363
with:
6464
driver: docker
65-
- name: Install awscli
66-
shell: bash
67-
run: |
68-
curl "https://awscli.amazonaws.com/awscli-exe-linux-$(uname -m).zip" -o "awscliv2.zip"
69-
unzip awscliv2.zip
70-
sudo ./aws/install
7165
- name: Login to ECR
7266
shell: bash
7367
env:

.github/workflows/container-validation-backends.yml

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,6 @@ jobs:
5555
uses: docker/setup-buildx-action@v3
5656
with:
5757
driver: docker
58-
- name: Install awscli
59-
shell: bash
60-
run: |
61-
curl "https://awscli.amazonaws.com/awscli-exe-linux-$(uname -m).zip" -o "awscliv2.zip"
62-
unzip awscliv2.zip
63-
sudo ./aws/install
6458
- name: Login to ECR
6559
shell: bash
6660
env:
@@ -369,32 +363,14 @@ jobs:
369363
MODEL_NAME: "Qwen/Qwen3-0.6B"
370364
steps: &deploy-test-steps
371365
- uses: actions/checkout@v4
372-
- name: Set namespace and install dependencies
366+
- name: Set namespace
373367
run: |
374368
# Set namespace using FRAMEWORK env var
375369
PROFILE_SANITIZED="${{ matrix.profile }}"
376370
PROFILE_SANITIZED="${PROFILE_SANITIZED//_/-}"
377371
echo "NAMESPACE=gh-job-id-${{ github.run_id }}-${FRAMEWORK}-${PROFILE_SANITIZED}" >> $GITHUB_ENV
378372
379373
set -x
380-
# Install dependencies
381-
sudo apt-get update && sudo apt-get install -y curl bash openssl gettext git jq
382-
383-
# Install yq
384-
echo "Installing yq..."
385-
curl -L https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -o yq
386-
sudo chmod 755 yq
387-
sudo mv yq /usr/local/bin/
388-
# Install Helm
389-
echo "Installing Helm..."
390-
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
391-
sudo chmod 700 get_helm.sh
392-
sudo ./get_helm.sh
393-
# Install kubectl
394-
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
395-
sudo chmod 755 kubectl
396-
sudo mv kubectl /usr/local/bin/
397-
398374
# Setup kubeconfig
399375
echo "${{ secrets.AZURE_AKS_CI_KUBECONFIG_B64 }}" | base64 -d > .kubeconfig
400376
chmod 600 .kubeconfig

0 commit comments

Comments
 (0)