summaryrefslogtreecommitdiff
path: root/.github/workflows/build_wheels.yml
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2020-04-22 16:15:44 +0200
committerRémi Flamary <remi.flamary@gmail.com>2020-04-22 16:15:44 +0200
commitb8c36c9a4f807b4743c296e84f3f0896a778619e (patch)
tree5abfec62c2abdea04e3c28fe1436d1d2aeafd734 /.github/workflows/build_wheels.yml
parent32b29d4f70d6e83a24d9eabf2b86b24e21bfa608 (diff)
test build wheels windows
Diffstat (limited to '.github/workflows/build_wheels.yml')
-rw-r--r--.github/workflows/build_wheels.yml39
1 files changed, 33 insertions, 6 deletions
diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml
index 9938698..ed8bd3d 100644
--- a/.github/workflows/build_wheels.yml
+++ b/.github/workflows/build_wheels.yml
@@ -10,17 +10,44 @@ jobs:
build_linux:
runs-on: ubuntu-latest
- strategy:
- max-parallel: 4
- matrix:
- python-version: [3.8]
steps:
- uses: actions/checkout@v1
- - name: Set up Python ${{ matrix.python-version }}
+ - name: Set up Python 3.8
uses: actions/setup-python@v1
with:
- python-version: ${{ matrix.python-version }}
+ python-version: 3.8
+
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install -r requirements.txt
+ pip install -U "cython"
+ - name: Install cibuildwheel
+ run: |
+ python -m pip install cibuildwheel==1.3.0
+
+ - name: Build wheel
+ env:
+ CIBW_BEFORE_BUILD: "pip install numpy cython"
+ run: |
+ python -m cibuildwheel --output-dir wheelhouse
+
+ - uses: actions/upload-artifact@v1
+ with:
+ name: wheels
+ path: ./wheelhouse
+
+ build_windows:
+
+ runs-on: windows-2019
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: Set up Python 3.8
+ uses: actions/setup-python@v1
+ with:
+ python-version: 3.8
- name: Install dependencies
run: |