We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31300a1 commit a38f5b4Copy full SHA for a38f5b4
.github/workflows/python-app.yml
@@ -67,9 +67,14 @@ jobs:
67
working-directory: src/mixin
68
run: |
69
go build -o libmixin.a -buildmode=c-archive
70
+ - name: Build mixin-python macosx
71
+ if: ${{ matrix.os == 'macos-12' }}
72
+ run: |
73
+ python setup.py bdist_wheel --plat-name macosx-10.15-x86_64
74
- name: Build mixin-python
75
+ if: ${{ matrix.os != 'macos-12' }}
76
- python setup.py sdist bdist_wheel
77
+ python setup.py bdist_wheel
78
- name: get whl file
79
id: whlfile
80
shell: bash
0 commit comments