Skip to content

Commit b33f89c

Browse files
committed
[HACK] Install AWS manually
1 parent b3d87fa commit b33f89c

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/ci.yml

+8
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,10 @@ jobs:
307307
timeout-minutes: 600
308308
runs-on: "${{ matrix.os }}"
309309
steps:
310+
- name: HACK --- Install AWS
311+
run: "curl \"https://awscli.amazonaws.com/AWSCLIV2.pkg\" -o \"AWSCLIV2.pkg\"\nsudo installer -pkg AWSCLIV2.pkg -target /\n"
312+
- name: HACK --- Check AWS
313+
run: aws --version
310314
- name: disable git crlf conversion
311315
run: git config --global core.autocrlf false
312316
- name: checkout the source code
@@ -438,6 +442,10 @@ jobs:
438442
timeout-minutes: 600
439443
runs-on: "${{ matrix.os }}"
440444
steps:
445+
- name: HACK --- Install AWS
446+
run: "curl \"https://awscli.amazonaws.com/AWSCLIV2.pkg\" -o \"AWSCLIV2.pkg\"\nsudo installer -pkg AWSCLIV2.pkg -target /\n"
447+
- name: HACK --- Check AWS
448+
run: aws --version
441449
- name: disable git crlf conversion
442450
run: git config --global core.autocrlf false
443451
- name: checkout the source code

src/ci/github-actions/ci.yml

+8
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,14 @@ x--expand-yaml-anchors--remove:
114114
runs-on: "${{ matrix.os }}"
115115
env: *shared-ci-variables
116116
steps:
117+
- name: "HACK --- Install AWS"
118+
run: |
119+
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
120+
sudo installer -pkg AWSCLIV2.pkg -target /
121+
122+
- name: "HACK --- Check AWS"
123+
run: aws --version
124+
117125
- name: disable git crlf conversion
118126
run: git config --global core.autocrlf false
119127

0 commit comments

Comments
 (0)