Skip to content

Commit dcb559c

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

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,10 @@ jobs:
470470
with:
471471
# v2 defaults to a shallow checkout, but we need at least to the previous tag
472472
fetch-depth: 0
473+
- name: Ensure we have installed awscli
474+
run: |
475+
which aws
476+
aws --version
473477
- name: Acquire tags for the repo
474478
run: |
475479
git fetch --no-tags --prune --depth=1 origin +refs/tags/*:refs/tags/*
@@ -619,6 +623,10 @@ jobs:
619623
with:
620624
# v2 defaults to a shallow checkout, but we need at least to the previous tag
621625
fetch-depth: 0
626+
- name: Ensure we have installed awscli
627+
run: |
628+
which aws
629+
aws --version
622630
- name: Acquire tags for the repo
623631
run: |
624632
git fetch --no-tags --prune --depth=1 origin +refs/tags/*:refs/tags/*
@@ -790,6 +798,10 @@ jobs:
790798
with:
791799
# v2 defaults to a shallow checkout, but we need at least to the previous tag
792800
fetch-depth: 0
801+
- name: Ensure we have installed awscli
802+
run: |
803+
which aws
804+
aws --version
793805
- name: Acquire tags for the repo
794806
run: |
795807
git fetch --no-tags --prune --depth=1 origin +refs/tags/*:refs/tags/*

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ jobs: # skip-master skip-pr skip-stable
5858
with:
5959
# v2 defaults to a shallow checkout, but we need at least to the previous tag
6060
fetch-depth: 0
61+
- name: Ensure we have installed awscli
62+
run: |
63+
which aws
64+
aws --version
6165
- name: Acquire tags for the repo
6266
run: |
6367
git fetch --no-tags --prune --depth=1 origin +refs/tags/*:refs/tags/*

0 commit comments

Comments
 (0)