Skip to content

Commit

Permalink
Python bindings (#7)
Browse files Browse the repository at this point in the history
* Add python_bindings feature

* Start setting up pyo3 stuff

* Bindings for yaz0 functions

* yay0 bindings

* type hints

* Readme instructions

* python tests

* Add Python tests to CI

* Add maturin to CI

* fmt

* Remove `--all-features`

* format

* maturin_upload_pypi.yml

* `crunch64.yay0.compress`

* fix ci

* fix ci readme

* whoops

* yeet readme

* decompals as the author

* fix merge
  • Loading branch information
AngheloAlf authored Dec 16, 2023
1 parent d39e07f commit a81ab0e
Show file tree
Hide file tree
Showing 19 changed files with 757 additions and 12 deletions.
131 changes: 131 additions & 0 deletions .github/workflows/maturin_upload_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
# This file is autogenerated by maturin v1.2.3
# To update, run
#
# maturin generate-ci github
#
name: Upload to PyPI

on:
push:
branches:
- main
- master
tags:
- '*'
pull_request:
workflow_dispatch:

permissions:
contents: read

jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
manylinux: auto
working-directory: lib/
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

windows:
runs-on: windows-latest
strategy:
matrix:
target: [x64, x86]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
architecture: ${{ matrix.target }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
working-directory: lib/
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

macos:
runs-on: macos-latest
strategy:
matrix:
target: [x86_64, aarch64]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
working-directory: lib/
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

sdist:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist
working-directory: lib/
- name: Upload sdist
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

release:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, windows, macos, sdist]
strategy:
fail-fast: false
steps:
- uses: actions/download-artifact@v3
with:
name: wheels
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_PASSWORD }}
with:
command: upload
args: --non-interactive --skip-existing *
28 changes: 28 additions & 0 deletions .github/workflows/python_bindings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Python bindings

# Build on every branch push, tag push, and pull request change:
on: [push, pull_request]

jobs:
tests_cases:
name: Tests cases
runs-on: ubuntu-latest
strategy:
fail-fast: false

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup requirements
run: |
python3 -m pip install -U maturin
- name: Install local crunch64
run: python3 -m pip install ./lib

- name: Test Yay0
run: python3 ./python_bindings/tests/test_yay0.py

- name: Test Yaz0
run: python3 ./python_bindings/tests/test_yaz0.py
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Test
run: cargo test --all-features
run: cargo test

ubuntu-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test
run: cargo test --all-features
run: cargo test

windows-check:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Test
run: cargo test --all-features
run: cargo test
Loading

0 comments on commit a81ab0e

Please sign in to comment.