From: Sinacam Date: Wed, 28 Sep 2022 11:55:54 +0000 (+0800) Subject: added MacOS wheel to github actions X-Git-Tag: v246~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=44f51a2ceaaa563ea1797944f0c6c89a24f9e97a;p=liblinear added MacOS wheel to github actions --- 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 -