Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chris48s committed Jan 31, 2024
1 parent 092c96f commit 88b6302
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build-package.yml
Expand Up @@ -11,15 +11,19 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install pipx (if required)
- name: Install extras for Mac/arm64
if: matrix.os == 'macos-14'
run: python3 -m pip install pipx
run: |
python3 -m pip install pipx
brew install pyenv
pyenv install 2.7.18
which python2.7
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.4
env:
CIBW_BEFORE_BUILD_LINUX: yum install -y wget && ./build-drafter.sh linux
CIBW_BEFORE_BUILD_MACOS: /opt/local/bin/port install python27 && ./build-drafter.sh mac
CIBW_BEFORE_BUILD_MACOS: ./build-drafter.sh mac
CIBW_BUILD: "cp38-manylinux_x86_64 cp38-macosx_x86_64 cp38-macosx_arm64"
CIBW_BUILD_VERBOSITY: 3
with:
Expand Down

0 comments on commit 88b6302

Please sign in to comment.