Skip to content

Commit

Permalink
CI attempt 1/n
Browse files Browse the repository at this point in the history
  • Loading branch information
quantumgizmos committed Jun 25, 2024
1 parent 52828c8 commit 4ba31fb
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:


build_wheels:
runs-on: ${{ matrix.os_dist.os }}
env:
CIBW_BUILD: "${{ matrix.os_dist.dist }}"
MACOSX_DEPLOYMENT_TARGET: "13.1"
CIBW_ARCHS_MACOS: "arm64 x86_64"
CIBW_REPAIR_WHEEL_COMMAND_MACOS: delocate-wheel -w {dest_dir} -v {wheel}
# runs-on: ${{ matrix.os_dist.os }}
# env:
# CIBW_BUILD: "${{ matrix.os_dist.dist }}"
# MACOSX_DEPLOYMENT_TARGET: "13.1"
# CIBW_ARCHS_MACOS: "arm64 x86_64"
#CIBW_REPAIR_WHEEL_COMMAND_MACOS: delocate-wheel -w {dest_dir} -v {wheel}
strategy:
fail-fast: false
matrix:
Expand All @@ -45,29 +45,35 @@ jobs:
{os: macos-latest, dist: cp39-macosx_x86_64},
{os: macos-latest, dist: cp310-macosx_x86_64},
{os: macos-latest, dist: cp311-macosx_x86_64},
{os: macos-latest, dist: cp312-macosx_x86_64},

# macosx arm64
{os: macos-latest, dist: cp38-macosx_arm64},
{os: macos-latest, dist: cp39-macosx_arm64},
{os: macos-latest, dist: cp310-macosx_arm64},
{os: macos-latest, dist: cp311-macosx_arm64},

# macosx universal2
# {os: macos-latest, dist: cp38-macosx_universal2},
# {os: macos-latest, dist: cp39-macosx_universal2},
# {os: macos-latest, dist: cp310-macosx_universal2},
# {os: macos-latest, dist: cp311-macosx_universal2},
{os: macos-latest, dist: cp312-macosx_arm64},

#macosx universal2
{os: macos-latest, dist: cp38-macosx_universal2},
{os: macos-latest, dist: cp39-macosx_universal2},
{os: macos-latest, dist: cp310-macosx_universal2},
{os: macos-latest, dist: cp311-macosx_universal2},
{os: macos-latest, dist: cp312-macosx_universal2},

# windows amd64
{os: windows-latest, dist: cp38-win_amd64},
{os: windows-latest, dist: cp39-win_amd64},
{os: windows-latest, dist: cp310-win_amd64},
{os: windows-latest, dist: cp311-win_amd64},
{os: windows-latest, dist: cp312-win_amd64},

# ubuntu x86_64
{os: ubuntu-latest, dist: cp38-manylinux_x86_64},
{os: ubuntu-latest, dist: cp39-manylinux_x86_64},
{os: ubuntu-latest, dist: cp310-manylinux_x86_64},
{os: ubuntu-latest, dist: cp311-manylinux_x86_64},
{os: ubuntu-latest, dist: cp312-manylinux_x86_64},

]
steps:
Expand Down

0 comments on commit 4ba31fb

Please sign in to comment.