Skip to content

Commit

Permalink
Exclude mac-os build for now
Browse files Browse the repository at this point in the history
  • Loading branch information
LLukas22 committed Jun 4, 2023
1 parent f3ce53a commit 2eff99c
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
Binary file modified .github/workflows/CI.yml
Binary file not shown.
39 changes: 39 additions & 0 deletions .github/workflows/MacOS-CI.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2eff99c

Please sign in to comment.