Skip to content

Commit

Permalink
fix conf for CI in macos: universal were built instead of arm and x86
Browse files Browse the repository at this point in the history
  • Loading branch information
BDonnot committed Apr 22, 2024
1 parent 07fed61 commit aab3082
Showing 1 changed file with 7 additions and 2 deletions.
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

0 comments on commit aab3082

Please sign in to comment.