Skip to content

Commit

Permalink
Install the AWS CLI on ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
jgadling committed Sep 19, 2024
1 parent 12dbca6 commit 32737ef
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/apiv2-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ jobs:
name: "Run tests"
steps:
- uses: actions/checkout@v3
- name: Install AWS CLI v2
shell: bash
run: |
set -ue
set -o pipefail
URL="https://awscli.amazonaws.com/awscli-exe-linux-aarch64.zip"
curl $URL -o /tmp/awscliv2.zip -v
unzip -q /tmp/awscliv2.zip -d /tmp
rm /tmp/awscliv2.zip
sudo /tmp/aws/install --update
rm -rf /tmp/aws/
# Set up a local test env and run tests
- name: Run tests
run: |
Expand Down

0 comments on commit 32737ef

Please sign in to comment.