Skip to content

Commit

Permalink
fix(ci/linux): don't use pip3 to install awscli
Browse files Browse the repository at this point in the history
  • Loading branch information
rami3l committed Apr 24, 2024
1 parent 13ca68d commit 2e52628
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -565,11 +565,11 @@ jobs:
path: |
target/${{ matrix.target }}/release/rustup-init
retention-days: 7
- name: Acquire the AWS tooling
- name: Ensure we have installed awscli
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
run: |
pip3 install -U setuptools
pip3 install awscli
which aws
aws --version
- name: Prepare the dist
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
run: |
Expand Down Expand Up @@ -714,11 +714,11 @@ jobs:
path: |
target/${{ matrix.target }}/release/rustup-init
retention-days: 7
- name: Acquire the AWS tooling
- name: Ensure we have installed awscli
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
run: |
pip3 install -U setuptools
pip3 install awscli
which aws
aws --version
- name: Prepare the dist
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
run: |
Expand Down Expand Up @@ -885,11 +885,11 @@ jobs:
path: |
target/${{ matrix.target }}/release/rustup-init
retention-days: 7
- name: Acquire the AWS tooling
- name: Ensure we have installed awscli
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
run: |
pip3 install -U setuptools
pip3 install awscli
which aws
aws --version
- name: Prepare the dist
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
run: |
Expand Down
6 changes: 3 additions & 3 deletions ci/actions-templates/linux-builds-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,11 @@ jobs: # skip-master skip-pr skip-stable
path: |
target/${{ matrix.target }}/release/rustup-init
retention-days: 7
- name: Acquire the AWS tooling
- name: Ensure we have installed awscli
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
run: |
pip3 install -U setuptools
pip3 install awscli
which aws
aws --version
- name: Prepare the dist
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
run: |
Expand Down

0 comments on commit 2e52628

Please sign in to comment.