Add maturin workflow to generate wheels #192
Workflow file for this run
This file contains 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 is autogenerated by maturin v1.7.4 and manually modified by ia0. | |
name: Maturin | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ${{ matrix.platform.runner }} | |
strategy: | |
matrix: | |
platform: | |
- runner: ubuntu-latest | |
target: x86_64 | |
- runner: windows-latest | |
target: x64 | |
- runner: macos-14 | |
target: aarch64 | |
steps: | |
- uses: actions/checkout@v4 | |
- if: matrix.platform.runner == 'ubuntu-latest' | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: rust/onnx/runtime/build/Linux | |
key: maturin-${{ matrix.platform.target }}-${{ hashFiles('rust/onnx/build.sh') }} | |
- if: matrix.platform.runner == 'ubuntu-latest' | |
name: Build wheels | |
uses: PyO3/maturin-action@v1 | |
with: | |
target: ${{ matrix.platform.target }} | |
args: --release --out=../dist | |
before-script-linux: "${{ github.workspace }}/rust/onnx/maturin.sh" | |
manylinux: 2_28 | |
working-directory: python | |
- if: matrix.platform.runner != 'ubuntu-latest' | |
name: Build wheels | |
uses: PyO3/maturin-action@v1 | |
with: | |
target: ${{ matrix.platform.target }} | |
args: --release --out=../dist | |
working-directory: python | |
- name: Rewrite wheels | |
run: true # TODO(reyammer): Fix wheels version. | |
- name: Install wheels | |
run: python3 -m pip install $(python -c "import glob; print(glob.glob('dist/*.whl')[0])") | |
- run: magika --version | |
- run: python3 -c 'import magika; print(magika.__version__)' | |
- run: magika -r tests_data/basic | |
- run: python3 ./python/scripts/run_quick_test_magika_cli.py | |
- run: python3 ./python/scripts/run_quick_test_magika_module.py | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-${{ matrix.platform.runner }}-${{ matrix.platform.target }} | |
path: dist | |
sdist: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# TODO(https://github.com/PyO3/maturin/issues/2244): Remove when released. | |
- run: rm rust/cli/README.md | |
- name: Build sdist | |
uses: PyO3/maturin-action@v1 | |
with: | |
command: sdist | |
args: --out=../dist | |
working-directory: python | |
- name: Upload sdist | |
uses: actions/upload-artifact@v4 | |
with: | |
name: wheels-sdist | |
path: dist |