Skip to content

Implement C++ bindings #53

Implement C++ bindings

Implement C++ bindings #53

Workflow file for this run

name: python
on:
push:
branches:
- main
pull_request:
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, i686]
steps:
- name: checkout
uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-python@v4
with:
python-version: 3.9
architecture: x64
- name: build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
manylinux: auto
args: --release -m crates/optik-py/Cargo.toml --out dist
- name: upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
pre-release:
concurrency:
group: push-${{ github.ref_name }}-prerelease
cancel-in-progress: true
needs: [linux]
runs-on: "ubuntu-latest"
steps:
- uses: dev-drprasad/[email protected]
with:
tag_name: prerelease
delete_release: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/download-artifact@v3
with:
name: wheels
path: wheels
# Create the actual prerelease
# https://github.com/ncipollo/release-action
- name: GitHub release
uses: ncipollo/[email protected]
with:
prerelease: true
tag: "prerelease"
name: "Development Build"
allowUpdates: true
removeArtifacts: true
replacesArtifacts: true
artifacts: "wheels/*"