Skip to content

Build distribution files #21

Build distribution files

Build distribution files #21

Workflow file for this run

name: Build package wheels
on: [workflow_dispatch]
jobs:
build-wheels:
name: macOS
runs-on: ${{ matrix.os }}
strategy:
matrix:
# macos-13 is x86, 14 is arm64 (https://cibuildwheel.pypa.io/en/stable/setup/#github-actions)
os: [macos-14] # windows-latest, ubuntu-latest, macos-13,
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: test
run: |
which python
python --version
python -c "import platform; print(platform.machine())"
# - name: Install cibuildwheel
# run: pip install cibuildwheel==2.17.0
# - uses: ilammy/msvc-dev-cmd@v1
# if: startsWith(matrix.os, 'windows')
# with:
# arch: x64
# - name: Enable Xcode SDK
# if: startsWith(matrix.os, 'macos')
# # See https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-environment-variable
# # See https://stackoverflow.com/a/65277351 about SDKROOT variable
# run: echo "SDKROOT=$(xcrun --sdk macosx --show-sdk-path)" >> "$GITHUB_ENV"
# - name: Build wheels
# # See https://stackoverflow.com/a/65277351 about SDKROOT if: startsWith(matrix.os, 'ubuntu')
# run: python -m cibuildwheel --output-dir wheelhouse
# env:
# CIBW_BUILD_VERBOSITY: 1
# - uses: actions/upload-artifact@v4
# with:
# name: wheels
# path: ./wheelhouse/*.whl