Skip to content

Commit e44ba70

Browse files
committed
fix(ci/linux): use --break-system-packages for pip3 install
1 parent 13ca68d commit e44ba70

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ jobs:
569569
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
570570
run: |
571571
pip3 install -U setuptools
572-
pip3 install awscli
572+
pip3 install awscli --break-system-packages
573573
- name: Prepare the dist
574574
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
575575
run: |
@@ -718,7 +718,7 @@ jobs:
718718
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
719719
run: |
720720
pip3 install -U setuptools
721-
pip3 install awscli
721+
pip3 install awscli --break-system-packages
722722
- name: Prepare the dist
723723
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
724724
run: |
@@ -889,7 +889,7 @@ jobs:
889889
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
890890
run: |
891891
pip3 install -U setuptools
892-
pip3 install awscli
892+
pip3 install awscli --break-system-packages
893893
- name: Prepare the dist
894894
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
895895
run: |

ci/actions-templates/linux-builds-template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs: # skip-master skip-pr skip-stable
157157
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
158158
run: |
159159
pip3 install -U setuptools
160-
pip3 install awscli
160+
pip3 install awscli --break-system-packages
161161
- name: Prepare the dist
162162
if: github.event_name == 'push' && github.ref == 'refs/heads/stable' && matrix.mode == 'release'
163163
run: |

0 commit comments

Comments
 (0)