From e4899021c863c687df1b513190fa22960edfc2f4 Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Sun, 17 May 2020 22:28:16 +0200 Subject: ya! --- .github/workflows/build_wheels.yml | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 883f3c11..4e9ea1a4 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -20,23 +20,21 @@ jobs: name: Install Python 3.7 with: python-version: '3.7' - + - name: Install cibuildwheel + run: | + python -m pip install cibuildwheel==1.4.1 - name: Install Visual C++ for Python 2.7 if: startsWith(matrix.os, 'windows') + run: | + choco install vcpython27 -f -y + - name: Build wheel run: | - choco install vcpython27 -f -y - - - name: "install cibuildwheel" - run: python -m pip install cibuildwheel==1.4.1 - - - name: build wheel - run: cibuildwheel . - - - name: Upload wheels - uses: actions/upload-artifact@v1 + python -m cibuildwheel --output-dir wheelhouse + - uses: actions/upload-artifact@v1 with: - name: wheels2 - path: wheelhouse + name: wheels + path: ./wheelhouse + # wheel: # name: build wheel for ${{ matrix.os }} -- cgit v1.2.1