Skip to content

Commit

Permalink
install java for linux wheel builds
Browse files Browse the repository at this point in the history
bump cibuildwheel
    need a version that has a version of manylinux with past EOL centOS mirrors

give up on java on muslinux
    cmake can't find javah
  • Loading branch information
nosracd committed Jul 29, 2024
1 parent 611b027 commit c55ba44
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
platforms: all

- name: Build wheels
uses: pypa/[email protected].1
uses: pypa/[email protected].2
env:
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos_deployment_target }}
CIBW_ARCHS: ${{ matrix.arch }}
Expand Down
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,10 @@ filterwarnings = ["error"]

[tool.cibuildwheel]
build-verbosity = 1

[tool.cibuildwheel.linux]
before-all = "yum install java-1.8.0-openjdk-devel -y"

[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = ""

0 comments on commit c55ba44

Please sign in to comment.