From 32737efe38dd95e9c2b7c5c84176de72fc0abc35 Mon Sep 17 00:00:00 2001 From: Jessica Gadling Date: Thu, 19 Sep 2024 12:31:42 -0400 Subject: [PATCH] Install the AWS CLI on ARM --- .github/workflows/apiv2-test.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/apiv2-test.yml b/.github/workflows/apiv2-test.yml index 3a1eb6ca5..a0ba5be31 100644 --- a/.github/workflows/apiv2-test.yml +++ b/.github/workflows/apiv2-test.yml @@ -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: |