File tree 1 file changed +0
-30
lines changed
1 file changed +0
-30
lines changed Original file line number Diff line number Diff line change 64
64
- run : venv/bin/pip install -U pip
65
65
- run : venv/bin/pip install --find-links wheelhouse python_flint
66
66
- run : venv/bin/python test/test.py
67
-
68
- test_wheels_linux32 :
69
- #
70
- # This uses architecture: x86 to select a 32 bit build of Python although
71
- # the host OS and hardware will still be 64 bit Linux. The wheels
72
- # themselves are built with cibuildwheel in a 32 bit Linux docker
73
- # container. Hopefully this is enough to test 32 bit mode...
74
- #
75
- needs : build_wheels
76
- name : Test ${{ matrix.python-version }} wheel with 32 bit Python on Linux
77
- runs-on : ubuntu-20.04
78
- strategy :
79
- fail-fast : false
80
- matrix :
81
- python-version : ['3.9', '3.10', '3.11']
82
-
83
- steps :
84
- - uses : actions/checkout@v3
85
- - uses : actions/setup-python@v4
86
- with :
87
- python-version : ${{ matrix.python-version }}
88
- architecture : x86
89
- - uses : actions/download-artifact@v3
90
- with :
91
- name : artifact
92
- path : wheelhouse
93
- - run : python -m venv venv
94
- - run : venv/bin/pip install -U pip
95
- - run : venv/bin/pip install --find-links wheelhouse python_flint
96
- - run : venv/bin/python test/test.py
You can’t perform that action at this time.
0 commit comments