From 44f51a2ceaaa563ea1797944f0c6c89a24f9e97a Mon Sep 17 00:00:00 2001 From: Sinacam Date: Wed, 28 Sep 2022 19:55:54 +0800 Subject: [PATCH] added MacOS wheel to github actions --- .github/workflows/wheel.yml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index d0ae597..c6775d0 100644 --- a/.github/workflows/wheel.yml +++ b/.github/workflows/wheel.yml @@ -15,26 +15,21 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [windows-2019] + os: [windows-2019, macos-11] steps: - uses: actions/checkout@v2 - # Used to host cibuildwheel - - uses: actions/setup-python@v2 - - - name: Install cibuildwheel - run: python -m pip install cibuildwheel==2.3.1 - - name: Build wheels - working-directory: ./python - run: python -m cibuildwheel --output-dir wheelhouse + uses: pypa/cibuildwheel@v2.10.2 env: # don't build for PyPython and windows 32-bit CIBW_SKIP: pp* *win32* + with: + package-dir: ./python + output-dir: ./python/wheelhouse - name: Upload a Build Artifact uses: actions/upload-artifact@v3.0.0 with: path: ./python/wheelhouse - -- 2.50.1