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 b1f077e commit d101d45Copy full SHA for d101d45
1 file changed
.github/workflows/wheels.yml
@@ -50,7 +50,12 @@ jobs:
50
- name: Install Python dependencies
51
run: pip install maturin
52
- name: Build wheels
53
+ if: matrix.os != 'macos-latest'
54
run: maturin build --release --strip
55
+ - name: Build wheels universal2
56
+ if: matrix.os == 'macos-latest'
57
+ # OSX: universal2 binaries, also for M1
58
+ run: maturin build --release --strip --universal2
59
- name: Run unit tests on Unix
60
if: matrix.os != 'windows-latest'
61
# TODO: can we install the wheel built above instead?
0 commit comments