Skip to content

Commit

Permalink
Merge pull request #983 from Qwinci/fix-pip-ci
Browse files Browse the repository at this point in the history
ci: Fix pip package installation
  • Loading branch information
qookei authored Feb 8, 2024
2 parents 5454a48 + 2397698 commit e51d93e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/abidiff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
apt-get install -y ninja-build qemu-user \
python3-setuptools python3-jsonschema \
python3-pip abigail-tools
pip install -U xbstrap pyexpect meson
pip install --break-system-packages -U xbstrap pyexpect meson
- name: Checkout base branch
if: ${{ github.base_ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
apt-get install -y ninja-build qemu-user \
python3-setuptools python3-jsonschema \
python3-pexpect python3-pip netbase
pip install -U xbstrap pyexpect meson
pip install --break-system-packages -U xbstrap pyexpect meson
- name: Prepare directories
run: |
mkdir src/
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
apt-get install -y ninja-build qemu-user \
python3-setuptools python3-jsonschema \
python3-pip
pip install -U xbstrap meson
pip install --break-system-packages -U xbstrap meson
- name: Checkout
uses: actions/checkout@v2
with:
Expand Down

0 comments on commit e51d93e

Please sign in to comment.