From c05c4369cc113b077365e0f784ad10f49b7e62bd Mon Sep 17 00:00:00 2001 From: denehoffman Date: Wed, 4 Dec 2024 13:48:41 -0500 Subject: [PATCH] ci: add git and clang to the weird OS target builds --- .github/workflows/maturin.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maturin.yml b/.github/workflows/maturin.yml index b4796f3..9d20182 100644 --- a/.github/workflows/maturin.yml +++ b/.github/workflows/maturin.yml @@ -64,7 +64,7 @@ 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 }} @@ -72,7 +72,7 @@ jobs: 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 @@ -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