This repository was archived by the owner on Dec 12, 2025. It is now read-only.
forked from jpype-project/jpype
-
Notifications
You must be signed in to change notification settings - Fork 0
Add (primitive) version of SIGTERM handling to jpype #1
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
afa111b
Hand over control back to python for SIGTERM signals as well
dfangl 46e9897
Add .venv to gitignore, add github actions wheel build
dfangl 544b61e
rename and reversion package
dfangl e919b98
Add fork information into README.rst
dfangl eaa2a48
Make the signal handling code less duplicated
dfangl 5eb9202
Add pypi upload on tagged releases
dfangl 4181184
Add on push tags target
dfangl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,85 @@ | ||
| name: Build | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| tags: | ||
| - v*.* | ||
| pull_request: | ||
| workflow_dispatch: | ||
|
|
||
|
|
||
| jobs: | ||
| build_wheels: | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| matrix: | ||
| # macos-13 is an intel runner, macos-14 is apple silicon | ||
| pyver: [ cp311, cp312 ] | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| # Used to host cibuildwheel | ||
| - name: Setup python | ||
| uses: actions/setup-python@v5 | ||
|
|
||
| - name: Set up QEMU | ||
| if: runner.os == 'Linux' | ||
| uses: docker/setup-qemu-action@v3 | ||
| with: | ||
| platforms: all | ||
|
|
||
| - name: Build wheels | ||
| uses: pypa/cibuildwheel@v2.21.3 | ||
| env: | ||
| # configure cibuildwheel to build native archs ('auto'), and some | ||
| # emulated ones | ||
| CIBW_BUILD: ${{matrix.pyver}}-* | ||
| CIBW_ARCHS_LINUX: auto aarch64 | ||
| CIBW_BEFORE_ALL_LINUX: > | ||
| yum install -y java-11-openjdk-devel | ||
| CIBW_SKIP: '*-musllinux_*' | ||
|
|
||
| - uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: cibw-wheels-${{ matrix.pyver }} | ||
| path: ./wheelhouse/*.whl | ||
|
|
||
| build_sdist: | ||
| name: Build source distribution | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Build sdist | ||
| run: pipx run build --sdist | ||
|
|
||
| - uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: cibw-sdist | ||
| path: dist/*.tar.gz | ||
|
|
||
| upload_pypi: | ||
| needs: [build_wheels, build_sdist] | ||
| runs-on: ubuntu-latest | ||
| environment: | ||
| name: pypi | ||
| url: https://pypi.org/p/jpype1-ext | ||
| permissions: | ||
| id-token: write | ||
| # if: github.event_name == 'release' && github.event.action == 'published' | ||
| # or, alternatively, upload to PyPI on every tag starting with 'v' (remove on: release above to use this) | ||
| if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | ||
| steps: | ||
| - uses: actions/download-artifact@v4 | ||
| with: | ||
| # unpacks all CIBW artifacts into dist/ | ||
| pattern: cibw-* | ||
| path: dist | ||
| merge-multiple: true | ||
| - name: List artifacts | ||
| run: ls -lah dist/ | ||
| - name: Publish package distributions to PyPI | ||
| uses: pypa/gh-action-pypi-publish@release/v1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -85,3 +85,4 @@ jacoco/ | |
| wheelhouse/ | ||
| vc*.pdb | ||
| *.class | ||
| .venv | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This new SIGTERM handling seems the main part here