summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2020-04-22 15:38:39 +0200
committerRémi Flamary <remi.flamary@gmail.com>2020-04-22 15:38:39 +0200
commitc60cb3bcfd3ff67113a8d8a84230ffd263b72c6e (patch)
treea456596e04b1ce92808f86b3c22df77c84a5dfed /.github
parent5f679247f64fa1c8e277f34165850caea311a084 (diff)
add wheel build action
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_wheels.yml41
1 files changed, 41 insertions, 0 deletions
diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml
new file mode 100644
index 0000000..5ade5d7
--- /dev/null
+++ b/.github/workflows/build_wheels.yml
@@ -0,0 +1,41 @@
+name: Build dist and wheels
+
+on:
+ push:
+ branches:
+ - 'build_wheels'
+
+
+jobs:
+ build_linux:
+
+ runs-on: ubuntu-latest
+ strategy:
+ max-parallel: 4
+ matrix:
+ python-version: [3.5, 3.6, 3.7, 3.8]
+
+ steps:
+ - uses: actions/checkout@v1
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v1
+ with:
+ python-version: ${{ matrix.python-version }}
+
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install -r requirements.txt
+
+ - name: Install cibuildwheel
+ run: |
+ python -m pip install cibuildwheel==1.3.0
+
+ - name: Build wheel
+ run: |
+ python -m cibuildwheel --output-dir wheelhouse
+
+ - uses: actions/upload-artifact@v1
+ with:
+ name: wheels
+ path: ./wheelhouse \ No newline at end of file