Skip to content

Commit

Permalink
feat: migrate to pyo3
Browse files Browse the repository at this point in the history
  • Loading branch information
anonrig committed May 16, 2024
1 parent 1603360 commit 267a20f
Show file tree
Hide file tree
Showing 66 changed files with 1,950 additions and 3,511 deletions.
1 change: 0 additions & 1 deletion .codecov.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
ignore:
- "relay-cabi/**/*.rs"
- "relay-general/derive/**/*.rs"
64 changes: 29 additions & 35 deletions .github/workflows/build_library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,30 @@ jobs:
strategy:
fail-fast: false
matrix:
build-arch:
target:
- x86_64
- aarch64

name: Python Linux ${{ matrix.build-arch }}
name: Python Linux ${{ matrix.target }}
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- if: matrix.build-arch == 'aarch64'
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- run: rustup toolchain install stable --profile minimal --no-self-update

- uses: actions/setup-python@v5

- name: Build in Docker
run: scripts/docker-manylinux.sh
env:
TARGET: ${{ matrix.build-arch }}
- name: Build wheels
uses: PyO3/maturin-action@v1
working-directory: py
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: "true"
manylinux: auto

- uses: actions/upload-artifact@v3
with:
Expand All @@ -45,39 +48,29 @@ jobs:
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-apple-darwin
py-platform: macosx-10_15_x86_64
- target: aarch64-apple-darwin
py-platform: macosx-11_0_arm64
target:
- x86_64
- aarch64

name: Python macOS ${{ matrix.py-platform }}
runs-on: macos-11
name: Python macOS ${{ matrix.target }}
runs-on: macos-latest

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Install Rust Toolchain
run: |
rustup set profile minimal
rustup toolchain install stable
rustup override set stable
rustup target add --toolchain stable ${{ matrix.target }}
- run: rustup toolchain install stable --profile minimal --no-self-update

- uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Build Wheel
run: |
pip install wheel
python setup.py bdist_wheel -p ${{ matrix.py-platform }}
- name: Build wheels
uses: PyO3/maturin-action@v1
working-directory: py
env:
# consumed by cargo and setup.py to obtain the target dir
CARGO_BUILD_TARGET: ${{ matrix.target }}
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: "true"

- uses: actions/upload-artifact@v3
with:
Expand All @@ -94,12 +87,13 @@ jobs:
submodules: recursive

- uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Build sdist
run: python setup.py sdist --format=zip
uses: PyO3/maturin-action@v1
working-directory: py
with:
command: sdist
args: --out dist

- uses: actions/upload-artifact@v3
with:
Expand Down
Loading

0 comments on commit 267a20f

Please sign in to comment.