File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -42,14 +42,29 @@ jobs:
4242 name : wheels
4343 path : dist
4444 - name : pytest
45- if : ${{ startsWith(matrix.target, 'x86') || matrix.target == 'aarch64' }}
45+ if : ${{ startsWith(matrix.target, 'x86_64') }}
4646 shell : bash
4747 run : |
4848 set -e
4949 ls dist/*
5050 pip install cotengrust --find-links dist --force-reinstall
5151 pip install pytest numpy cotengra
5252 pytest --verbose
53+ - name : pytest
54+ if : ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }}
55+ 56+ with :
57+ arch : ${{ matrix.target }}
58+ distro : ubuntu22.04
59+ githubToken : ${{ github.token }}
60+ install : |
61+ apt-get update
62+ apt-get install -y --no-install-recommends python3 python3-pip
63+ pip3 install -U pip pytest numpy cotengra
64+ run : |
65+ set -e
66+ pip3 install cotengrust --find-links dist --force-reinstall
67+ pytest --verbose
5368
5469 windows :
5570 runs-on : windows-latest
You can’t perform that action at this time.
0 commit comments