Skip to content

Commit

Permalink
CI: build universal2 wheels as well
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanDunfield committed Jan 13, 2025
1 parent dd2d766 commit ff9bb14
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/macOS_universal.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build

on: [push, pull_request]

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-13]

steps:
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_ARCHS: universal2

- uses: actions/upload-artifact@v4
with:
name: low_index-wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl

0 comments on commit ff9bb14

Please sign in to comment.