Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
use_qemu:
description: 'Use qemu to build linux aarch64, ppc64le & s390x'
description: 'Use qemu to build linux ppc64le & s390x'
required: true
default: true
schedule:
Expand Down Expand Up @@ -60,14 +60,14 @@ jobs:
arch: "i686"
build: "musllinux_"
use_qemu: false
- os: ubuntu-latest
- os: ubuntu-24.04-arm
arch: "aarch64"
build: "manylinux_"
use_qemu: true
- os: ubuntu-latest
use_qemu: false
- os: ubuntu-24.04-arm
arch: "aarch64"
build: "musllinux_"
use_qemu: true
use_qemu: false
- os: ubuntu-latest
arch: "ppc64le"
build: "manylinux_"
Expand All @@ -84,14 +84,14 @@ jobs:
arch: "s390x"
build: "musllinux_"
use_qemu: true
- os: ubuntu-latest
- os: ubuntu-24.04-arm
arch: "armv7l"
build: "manylinux_"
use_qemu: true
- os: ubuntu-latest
use_qemu: false
- os: ubuntu-24.04-arm
arch: "armv7l"
build: "musllinux_"
use_qemu: true
use_qemu: false
- os: windows-2019
arch: "AMD64"
build: ""
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ config-settings."cmake.define.RUN_CMAKE_TEST" = "ON"
config-settings."cmake.define.RUN_CMAKE_TEST_EXCLUDE" = "BootstrapTest|ExportImport|RunCMake.install|RunCMake.RuntimePath|RunCMake.file-GET_RUNTIME_DEPENDENCIES"

[[tool.cibuildwheel.overrides]]
select = ["*linux_aarch64", "*linux_armv7l", "*linux_ppc64le", "*linux_s390x"]
select = ["*linux_ppc64le", "*linux_s390x"]
config-settings."cmake.define.OPENSSL_ROOT_DIR" = "/usr/local/ssl"
config-settings."cmake.define.CMAKE_JOB_POOL_COMPILE" = "compile"
config-settings."cmake.define.CMAKE_JOB_POOL_LINK" = "link"
Expand Down
Loading