diff --git a/.github/workflows/ci-pre-release.yml b/.github/workflows/ci-pre-release.yml index caf25584..0b0a9c2d 100644 --- a/.github/workflows/ci-pre-release.yml +++ b/.github/workflows/ci-pre-release.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - target: [x86_64, x86, aarch64, armv7, s390x, ppc64le] + target: [x86_64, x86, aarch64] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 @@ -35,7 +35,7 @@ jobs: target: ${{ matrix.target }} args: --release --out dist --find-interpreter sccache: 'true' - manylinux: auto + manylinux: ${{ matrix.target == 'aarch64' && '2_28' || 'auto' }} - name: Upload wheels uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/ci-publish.yml b/.github/workflows/ci-publish.yml index a3f54fd2..277916a7 100644 --- a/.github/workflows/ci-publish.yml +++ b/.github/workflows/ci-publish.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - target: [x86_64, x86, aarch64, armv7, s390x, ppc64le] + target: [x86_64, x86, aarch64] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 @@ -37,7 +37,7 @@ jobs: target: ${{ matrix.target }} args: --release --out dist --find-interpreter sccache: 'true' - manylinux: auto + manylinux: ${{ matrix.target == 'aarch64' && '2_28' || 'auto' }} - name: Upload wheels uses: actions/upload-artifact@v4 with: