Skip to content

Commit

Permalink
Merge pull request #83 from BDonnot/bd-dev
Browse files Browse the repository at this point in the history
fix conf for CI in macos: universal were built instead of arm and x86
  • Loading branch information
BDonnot authored Apr 22, 2024
2 parents 23b1f52 + aab3082 commit 26ad409
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 26ad409

Please sign in to comment.