From 2382c15774ae1b8c8dc79a67abfb910a74cd09b2 Mon Sep 17 00:00:00 2001 From: Israel Fruchter Date: Mon, 1 Jul 2024 16:18:09 +0300 Subject: [PATCH] CI: disable 32bit builds we don't have manylinux for those anymore, and probably very little usage --- .github/workflows/build-push.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/build-push.yml b/.github/workflows/build-push.yml index 1cd3d13f29..97477c9a08 100644 --- a/.github/workflows/build-push.yml +++ b/.github/workflows/build-push.yml @@ -28,15 +28,9 @@ jobs: - os: ubuntu-latest platform: x86_64 - - os: ubuntu-latest - platform: i686 - - os: ubuntu-latest platform: PyPy - - os: windows-latest - platform: win32 - - os: windows-latest platform: win64 @@ -79,12 +73,6 @@ jobs: run: | echo "CIBW_BUILD=cp3*_x86_64" >> $GITHUB_ENV - - name: Overwrite for Linux 32 - if: runner.os == 'Linux' && matrix.platform == 'i686' - run: | - echo "CIBW_BUILD=cp*_i686" >> $GITHUB_ENV - echo "CIBW_TEST_COMMAND_LINUX=" >> $GITHUB_ENV - - name: Overwrite for Linux PyPy if: runner.os == 'Linux' && matrix.platform == 'PyPy' run: | @@ -96,11 +84,6 @@ jobs: run: | echo "CIBW_BUILD=cp*win_amd64" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append - - name: Overwrite for Windows 32 - if: runner.os == 'Windows' && matrix.platform == 'win32' - run: | - echo "CIBW_BUILD=cp*win32" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append - - name: Overwrite for Windows PyPY if: runner.os == 'Windows' && matrix.platform == 'PyPy' run: |