Skip to content

Commit

Permalink
[HACK] Install AWS manually
Browse files Browse the repository at this point in the history
  • Loading branch information
shepmaster committed Oct 3, 2023
1 parent b3d87fa commit b33f89c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,10 @@ jobs:
timeout-minutes: 600
runs-on: "${{ matrix.os }}"
steps:
- name: HACK --- Install AWS
run: "curl \"https://awscli.amazonaws.com/AWSCLIV2.pkg\" -o \"AWSCLIV2.pkg\"\nsudo installer -pkg AWSCLIV2.pkg -target /\n"
- name: HACK --- Check AWS
run: aws --version
- name: disable git crlf conversion
run: git config --global core.autocrlf false
- name: checkout the source code
Expand Down Expand Up @@ -438,6 +442,10 @@ jobs:
timeout-minutes: 600
runs-on: "${{ matrix.os }}"
steps:
- name: HACK --- Install AWS
run: "curl \"https://awscli.amazonaws.com/AWSCLIV2.pkg\" -o \"AWSCLIV2.pkg\"\nsudo installer -pkg AWSCLIV2.pkg -target /\n"
- name: HACK --- Check AWS
run: aws --version
- name: disable git crlf conversion
run: git config --global core.autocrlf false
- name: checkout the source code
Expand Down
8 changes: 8 additions & 0 deletions src/ci/github-actions/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,14 @@ x--expand-yaml-anchors--remove:
runs-on: "${{ matrix.os }}"
env: *shared-ci-variables
steps:
- name: "HACK --- Install AWS"
run: |
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
sudo installer -pkg AWSCLIV2.pkg -target /
- name: "HACK --- Check AWS"
run: aws --version

- name: disable git crlf conversion
run: git config --global core.autocrlf false

Expand Down

0 comments on commit b33f89c

Please sign in to comment.