Skip to content

Commit 9abc75c

Browse files
committed
testing win
1 parent 911085b commit 9abc75c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build_linux.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525

2626
- name: Build wheels
2727
env:
28-
CIBW_SKIP: "*-musllinux* pp* cp36-* cp37-* cp38-* cp39-* cp313-*"
28+
CIBW_BUILD: "cp310-manylinux_x86_64 cp311-manylinux_x86_64 cp312-manylinux_x86_64"
2929
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
3030
CIBW_BUILD_VERBOSITY: "3"
3131
CIBW_BEFORE_ALL: |
32-
yum install -y wget glibc.i686 glibc-devel.i686
32+
yum install -y wget
3333
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
3434
bash miniconda.sh -b -p /root/miniconda
3535
export PATH="/root/miniconda/bin:$PATH"
@@ -55,6 +55,9 @@ jobs:
5555
python -c "import platform; print('Python version:', platform.python_version())"
5656
python -c "import sys; print('sys.platform:', sys.platform)"
5757
python -c "import quaddtype; print('quaddtype imported successfully')"
58+
pip install {package}[test]
59+
pytest {project}/tests
60+
CIBW_TEST_EXTRAS: "test"
5861
run: |
5962
python -m cibuildwheel --output-dir wheelhouse
6063
working-directory: ./quaddtype

0 commit comments

Comments
 (0)