Skip to content

Commit

Permalink
Use --break-system-packages flag for pip in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sfodagain committed May 29, 2024
1 parent 4b0ffc1 commit 7eb67d9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
python builder.pyz build -p ${{ env.PACKAGE_NAME }}
- name: Running samples in CI setup
run: |
python -m pip install boto3
python -m pip install boto3 --break-system-packages
- name: configure AWS credentials (PubSub)
uses: aws-actions/configure-aws-credentials@v2
with:
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
python builder.pyz build -p ${{ env.PACKAGE_NAME }} --cmake-extra=-Tv140 --cmake-extra=-A${{ matrix.arch }}
- name: Running samples in CI setup
run: |
python -m pip install boto3
python -m pip install boto3 --break-system-packages
- name: configure AWS credentials (PubSub)
uses: aws-actions/configure-aws-credentials@v2
with:
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
python builder.pyz build -p ${{ env.PACKAGE_NAME }} --cmake-extra=-DUSE_CPU_EXTENSIONS=OFF
- name: Running samples in CI setup
run: |
python -m pip install boto3
python -m pip install boto3 --break-system-packages
- name: configure AWS credentials (PubSub)
uses: aws-actions/configure-aws-credentials@v2
with:
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
python builder.pyz build -p ${{ env.PACKAGE_NAME }} --cmake-extra=-DUSE_CPU_EXTENSIONS=OFF
- name: Running samples in CI setup
run: |
python -m pip install boto3
python -m pip install boto3 --break-system-packages
- name: configure AWS credentials (CyclePubSub)
uses: aws-actions/configure-aws-credentials@v2
with:
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:
./builder build -p ${{ env.PACKAGE_NAME }} --spec=downstream
- name: Running samples in CI setup
run: |
python3 -m pip install boto3
python3 -m pip install boto3 --break-system-packages
- name: configure AWS credentials (PubSub)
uses: aws-actions/configure-aws-credentials@v2
with:
Expand Down Expand Up @@ -399,7 +399,7 @@ jobs:
python builder.pyz build -p ${{ env.PACKAGE_NAME }}
- name: Running samples in CI setup
run: |
python3 -m pip install boto3
python3 -m pip install boto3 --break-system-packages
- name: configure AWS credentials (PubSub)
uses: aws-actions/configure-aws-credentials@v2
with:
Expand Down Expand Up @@ -462,7 +462,7 @@ jobs:
python builder.pyz build -p ${{ env.PACKAGE_NAME }}
- name: Running samples in CI setup
run: |
python3 -m pip install boto3
python3 -m pip install boto3 --break-system-packages
sudo apt-get update -y
sudo apt-get install softhsm -y
softhsm2-util --version
Expand Down

0 comments on commit 7eb67d9

Please sign in to comment.