Skip to content

Commit

Permalink
ci: add git and clang to the weird OS target builds
Browse files Browse the repository at this point in the history
  • Loading branch information
denehoffman committed Dec 4, 2024
1 parent 366cd81 commit c05c436
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maturin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ jobs:
pip install pytest
pytest
- name: pytest
if: ${{ !startsWith(matrix.platform.target, 'x86') && matrix.platform.target != 'ppc64' }}
if: ${{ !startsWith(matrix.platform.target, 'x86') && matrix.platform.target != 'ppc64le' }}
uses: uraimo/run-on-arch-action@v2
with:
arch: ${{ matrix.platform.target }}
distro: ubuntu22.04
githubToken: ${{ github.token }}
install: |
apt-get update
apt-get install -y --no-install-recommends python3 python3-pip
apt-get install -y --no-install-recommends python3 git clang python3-pip
pip3 install -U pip pytest
run: |
set -e
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
distro: alpine_latest
githubToken: ${{ github.token }}
install: |
apk add py3-virtualenv
apk add git clang py3-virtualenv
run: |
set -e
python3 -m virtualenv .venv
Expand Down

0 comments on commit c05c436

Please sign in to comment.