Skip to content

Commit af1cbb8

Browse files
committed
CI: disable 32bit builds
we don't have manylinux for those anymore, and probably very little usage
1 parent 2106af3 commit af1cbb8

File tree

1 file changed

+1
-18
lines changed

1 file changed

+1
-18
lines changed

.github/workflows/build-push.yml

+1-18
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
CIBW_BEFORE_TEST: "pip install -r {project}/test-requirements.txt"
1111
CIBW_BEFORE_BUILD_LINUX: "rm -rf ~/.pyxbld && rpm --import https://repo.almalinux.org/almalinux/RPM-GPG-KEY-AlmaLinux && yum install -y libffi-devel libev libev-devel openssl openssl-devel"
1212
CIBW_ENVIRONMENT: "CASS_DRIVER_BUILD_CONCURRENCY=2 CFLAGS='-g0 -O3'"
13-
CIBW_SKIP: cp35* cp36* *musllinux*
13+
CIBW_SKIP: cp35* cp36* pp*i686 *musllinux*
1414
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
1515
CIBW_MANYLINUX_PYPY_X86_64_IMAGE: manylinux_2_28
1616
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28
@@ -28,15 +28,9 @@ jobs:
2828
- os: ubuntu-latest
2929
platform: x86_64
3030

31-
- os: ubuntu-latest
32-
platform: i686
33-
3431
- os: ubuntu-latest
3532
platform: PyPy
3633

37-
- os: windows-latest
38-
platform: win32
39-
4034
- os: windows-latest
4135
platform: win64
4236

@@ -79,12 +73,6 @@ jobs:
7973
run: |
8074
echo "CIBW_BUILD=cp3*_x86_64" >> $GITHUB_ENV
8175
82-
- name: Overwrite for Linux 32
83-
if: runner.os == 'Linux' && matrix.platform == 'i686'
84-
run: |
85-
echo "CIBW_BUILD=cp*_i686" >> $GITHUB_ENV
86-
echo "CIBW_TEST_COMMAND_LINUX=" >> $GITHUB_ENV
87-
8876
- name: Overwrite for Linux PyPy
8977
if: runner.os == 'Linux' && matrix.platform == 'PyPy'
9078
run: |
@@ -96,11 +84,6 @@ jobs:
9684
run: |
9785
echo "CIBW_BUILD=cp*win_amd64" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
9886
99-
- name: Overwrite for Windows 32
100-
if: runner.os == 'Windows' && matrix.platform == 'win32'
101-
run: |
102-
echo "CIBW_BUILD=cp*win32" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
103-
10487
- name: Overwrite for Windows PyPY
10588
if: runner.os == 'Windows' && matrix.platform == 'PyPy'
10689
run: |

0 commit comments

Comments
 (0)