Skip to content

Commit

Permalink
Build jpy sdist artifact (jpy-consortium#57)
Browse files Browse the repository at this point in the history
devinrsmith authored Jun 1, 2022
1 parent 5845e05 commit 22131a1
Showing 2 changed files with 19 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build JPY wheels
name: Build JPY distributions

on:
pull_request:
@@ -7,6 +7,23 @@ on:
branches: [ 'master' ]

jobs:
sdist:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
# TODO: sdist shouldn't need java
- uses: actions/setup-java@v3
id: setup-java
with:
distribution: 'temurin'
java-version: '8'
- run: python setup.py sdist
- uses: actions/upload-artifact@v3
with:
name: sdist
path: dist

bdist-wheel:
runs-on: ${{ matrix.info.machine }}
strategy:
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
include *.txt
include *.xml
include *.md
include doc/make.bat
include doc/Makefile
include lib/*.jar

0 comments on commit 22131a1

Please sign in to comment.