Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix conf for CI in macos: universal were built instead of arm and x86 #83

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,13 @@ jobs:
export __O3_OPTIM=1
python setup.py build

- name: Build wheel
run: python setup.py bdist_wheel
- name: Build wheel (x86_64)
if: matrix.runner.arch == 'x86_64'
run: python setup.py bdist_wheel --plat-name=macosx_10_9_x86_64

- name: Build wheel (arm64)
if: matrix.runner.arch == 'arm64'
run: python setup.py bdist_wheel --plat-name=macosx_11_0_arm64

- name: Install wheel
shell: bash
Expand Down
Loading