diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 42573bf..5f9d70e 100644 Binary files a/.github/workflows/CI.yml and b/.github/workflows/CI.yml differ diff --git a/.github/workflows/MacOS-CI.yml b/.github/workflows/MacOS-CI.yml new file mode 100644 index 0000000..af0f7f3 --- /dev/null +++ b/.github/workflows/MacOS-CI.yml @@ -0,0 +1,39 @@ +# This file is autogenerated by maturin v0.15.2 +# To update, run +# +# maturin generate-ci --zig github +# +name: MacOS-CI + +on: + workflow_dispatch: + +permissions: + contents: read + +jobs: + macos: + runs-on: macos-latest + strategy: + fail-fast: false + matrix: + target: [x86_64, aarch64] + 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 --zig + sccache: 'true' + env: + RUSTFLAGS: "-C link-arg=-undefined -C link-arg=dynamic_lookup" + + - name: Upload wheels + uses: actions/upload-artifact@v3 + with: + name: wheels + path: dist