Skip to content
Merged
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
43 changes: 23 additions & 20 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,26 +183,29 @@ jobs:
name: wheels-macos-${{ matrix.platform.target }}-${{ matrix.module }}
path: dist

# sdist:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# module:
# - arro3-core
# - arro3-compute
# - arro3-io
# steps:
# - uses: actions/checkout@v4
# - name: Build sdist
# uses: PyO3/maturin-action@v1
# with:
# command: sdist
# args: --out dist --manifest-path ${{ matrix.module }}/Cargo.toml
# - name: Upload sdist
# uses: actions/upload-artifact@v4
# with:
# name: wheels-sdist-${{ matrix.module }}
# path: dist
sdist:
runs-on: ubuntu-latest
strategy:
matrix:
module:
- arro3-core
- arro3-compute
- arro3-io
steps:
- uses: actions/checkout@v4
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist --manifest-path ${{ matrix.module }}/Cargo.toml
- name: Test sdist
run: |
python -m pip install dist/*.tar.gz
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels-sdist-${{ matrix.module }}
path: dist

release:
runs-on: ubuntu-latest
Expand Down
Loading