From 2af0a2884150e53bddeda26e7fcb7108447d5803 Mon Sep 17 00:00:00 2001 From: Johnnie Gray Date: Thu, 7 Sep 2023 11:00:28 -0700 Subject: [PATCH] CI: only pytest standard linux platforms --- .github/workflows/CI.yml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index bf331d8..81927d6 100755 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -42,7 +42,7 @@ jobs: name: wheels path: dist - name: pytest - if: ${{ startsWith(matrix.target, 'x86_64') }} + if: ${{ startsWith(matrix.target, 'x86') || matrix.target == 'aarch64' }} shell: bash run: | set -e @@ -50,21 +50,6 @@ jobs: pip install cotengrust --find-links dist --force-reinstall pip install pytest numpy cotengra pytest --verbose - - name: pytest - if: ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }} - uses: uraimo/run-on-arch-action@v2.5.0 - with: - arch: ${{ matrix.target }} - distro: ubuntu22.04 - githubToken: ${{ github.token }} - install: | - apt-get update - apt-get install -y --no-install-recommends python3 python3-pip - pip3 install -U pip pytest numpy cotengra - run: | - set -e - pip3 install cotengrust --find-links dist --force-reinstall - pytest --verbose windows: runs-on: windows-latest