Skip to content

Commit

Permalink
seperate macos from cpu
Browse files Browse the repository at this point in the history
  • Loading branch information
AgainstEntropy committed Aug 22, 2024
1 parent 2e6c9b9 commit f7d6e05
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 43 deletions.
73 changes: 73 additions & 0 deletions .github/workflows/build-wheels-cpu-macos.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: Build Wheels (CPU) (MacOS)

on:
workflow_dispatch:

pull_request:
branches:
- main

permissions:
contents: write

jobs:

build_wheels_macos:
name: Build wheels on macos-${{ matrix.os }}
runs-on: macos-${{ matrix.os }}
strategy:
matrix:
os: [12, 13, 14]

steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"

# Used to host cibuildwheel
- uses: actions/setup-python@v5
with:
python-version: "3.8"
cache: "pip"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
# python -m pip install -e .
python -m pip install build wheel
- name: Build wheels
uses: pypa/[email protected]
env:
# disable repair
CIBW_REPAIR_WHEEL_COMMAND: ""
CIBW_ENVIRONMENT: CMAKE_ARGS="-DCMAKE_OSX_ARCHITECTURES=arm64;x86_64 "
CIBW_BUILD: "cp310-* cp311-* cp312-*"
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.os }}
CMAKE_BUILD_PARALLEL_LEVEL: 4
with:
package-dir: .
output-dir: wheelhouse

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

release:
name: Release
needs: [build_wheels_macos]
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v4
with:
merge-multiple: true
path: dist

- uses: softprops/action-gh-release@v2
with:
files: dist/*
tag_name: ${{ github.ref_name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44 changes: 1 addition & 43 deletions .github/workflows/build-wheels-cpu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,48 +88,6 @@ jobs:
name: wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl

build_wheels_macos:
name: Build wheels on macos-${{ matrix.os }}
runs-on: macos-${{ matrix.os }}
strategy:
matrix:
os: [12, 13, 14]

steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"

# Used to host cibuildwheel
- uses: actions/setup-python@v5
with:
python-version: "3.8"
cache: "pip"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
# python -m pip install -e .
python -m pip install build wheel
- name: Build wheels
uses: pypa/[email protected]
env:
# disable repair
CIBW_REPAIR_WHEEL_COMMAND: ""
CIBW_ENVIRONMENT: CMAKE_ARGS="-DCMAKE_OSX_ARCHITECTURES=arm64;x86_64 "
CIBW_BUILD: "cp310-* cp311-* cp312-*"
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.os }}
CMAKE_BUILD_PARALLEL_LEVEL: 4
with:
package-dir: .
output-dir: wheelhouse

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

build_wheels_arm64:
name: Build arm64 wheels
runs-on: ubuntu-20.04
Expand Down Expand Up @@ -185,7 +143,7 @@ jobs:

release:
name: Release
needs: [build_wheels_linux, build_wheels_win, build_wheels_macos, build_wheels_arm64, build_sdist]
needs: [build_wheels_linux, build_wheels_win, build_wheels_arm64, build_sdist]
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit f7d6e05

Please sign in to comment.