summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2020-05-17 22:28:16 +0200
committerGiampaolo Rodola <g.rodola@gmail.com>2020-05-17 22:28:16 +0200
commite4899021c863c687df1b513190fa22960edfc2f4 (patch)
tree059e7020b75191470d29f1d1dc7fdffbc90c8008
parent41e2142775b6ae7d6e30f86de2431a7277c58e68 (diff)
downloadpsutil-wheels2.tar.gz
-rw-r--r--.github/workflows/build_wheels.yml24
1 files 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 }}