Skip to content

Commit

Permalink
Add arm64 support tools
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Nola <derek.nola@suse.com>
  • Loading branch information
dereknola committed Sep 7, 2024
1 parent 5344d2d commit f6dfa02
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,13 @@ jobs:
with:
go-version-file: 'go.mod'
cache: false
- name: Install Support Tools
run: |
sudo apt-get update && sudo apt-get install -y wget gawk
sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_arm64 -O /usr/bin/yq &&\
sudo chmod +x /usr/bin/yq
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/arm64/kubectl"
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
- name: "Download k3s image"
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit f6dfa02

Please sign in to comment.