Fix workflow
This commit is contained in:
parent
1bc6af1dc4
commit
ca918d1ec5
1 changed files with 42 additions and 43 deletions
85
.github/workflows/pythonpackage.yml
vendored
85
.github/workflows/pythonpackage.yml
vendored
|
|
@ -51,8 +51,9 @@ jobs:
|
||||||
|
|
||||||
build-wheels:
|
build-wheels:
|
||||||
needs: [prepare-sqlite, tests]
|
needs: [prepare-sqlite, tests]
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-20.04
|
||||||
|
|
@ -68,61 +69,59 @@ jobs:
|
||||||
cibw_archs: aarch64
|
cibw_archs: aarch64
|
||||||
cibw_build: "cp3*-manylinux_aarch64"
|
cibw_build: "cp3*-manylinux_aarch64"
|
||||||
compile_target: armv8
|
compile_target: armv8
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-20.04
|
||||||
cibw_archs: aarch64
|
cibw_archs: aarch64
|
||||||
cibw_build: "cp3*-musllinux_aarch64"
|
cibw_build: "cp3*-musllinux_aarch64"
|
||||||
compile_target: armv8
|
compile_target: armv8
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-20.04
|
||||||
cibw_archs: i686
|
cibw_archs: i686
|
||||||
cibw_build: "cp3*-manylinux_i686"
|
cibw_build: "cp3*-manylinux_i686"
|
||||||
compile_target: x86
|
compile_target: x86
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-20.04
|
||||||
cibw_archs: i686
|
cibw_archs: i686
|
||||||
cibw_build: "cp3*-musllinux_i686"
|
cibw_build: "cp3*-musllinux_i686"
|
||||||
compile_target: x86
|
compile_target: x86
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-20.04
|
||||||
cibw_archs: ppc64le
|
cibw_archs: ppc64le
|
||||||
cibw_build: "cp3*-manylinux_ppc64le"
|
cibw_build: "cp3*-manylinux_ppc64le"
|
||||||
compile_target: ppc64le
|
compile_target: ppc64le
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-20.04
|
||||||
cibw_archs: ppc64le
|
cibw_archs: ppc64le
|
||||||
cibw_build: "cp3*-musllinux_ppc64le"
|
cibw_build: "cp3*-musllinux_ppc64le"
|
||||||
compile_target: ppc64le
|
compile_target: ppc64le
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-20.04
|
||||||
cibw_archs: s390x
|
cibw_archs: s390x
|
||||||
cibw_build: "cp3*-manylinux_s390x"
|
cibw_build: "cp3*-manylinux_s390x"
|
||||||
compile_target: s390x
|
compile_target: s390x
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-20.04
|
||||||
cibw_archs: s390x
|
cibw_archs: s390x
|
||||||
cibw_build: "cp3*-musllinux_s390x"
|
cibw_build: "cp3*-musllinux_s390x"
|
||||||
compile_target: s390x
|
compile_target: s390x
|
||||||
- os: windows-2019
|
- os: windows-2019
|
||||||
cibw_archs: AMD64
|
cibw_archs: AMD64
|
||||||
cibw_build: "cp3*-win_amd64"
|
cibw_build: "cp3*-win_amd64"
|
||||||
compile_target: x86_64
|
compile_target: x86_64
|
||||||
- os: windows-2019
|
- os: windows-2019
|
||||||
cibw_archs: x86
|
cibw_archs: x86
|
||||||
cibw_build: "cp3*-win32"
|
cibw_build: "cp3*-win32"
|
||||||
compile_target: x86
|
compile_target: x86
|
||||||
- os: windows-2019
|
- os: windows-2019
|
||||||
cibw_archs: ARM64
|
cibw_archs: ARM64
|
||||||
cibw_build: "cp3*-win_arm64"
|
cibw_build: "cp3*-win_arm64"
|
||||||
compile_target: armv8
|
compile_target: armv8
|
||||||
- os: macos-11
|
- os: macos-11
|
||||||
cibw_archs: x86_64
|
cibw_archs: x86_64
|
||||||
cibw_build: "cp3*-macosx_x86_64"
|
cibw_build: "cp3*-macosx_x86_64"
|
||||||
compile_target: x86_64
|
compile_target: x86_64
|
||||||
- os: macos-11
|
- os: macos-11
|
||||||
cibw_archs: arm64
|
cibw_archs: arm64
|
||||||
cibw_build: "cp3*-macosx_arm64"
|
cibw_build: "cp3*-macosx_arm64"
|
||||||
compile_target: armv8
|
compile_target: armv8
|
||||||
- os: macos-11
|
- os: macos-11
|
||||||
cibw_archs: universal2
|
cibw_archs: universal2
|
||||||
cibw_build: "cp3*-macosx_universal2"
|
cibw_build: "cp3*-macosx_universal2"
|
||||||
compile_target: universal2
|
compile_target: universal2
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue