-
Notifications
You must be signed in to change notification settings - Fork 83
65 lines (59 loc) · 2.03 KB
/
build-wheels.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Build-wheels
# This workflow builds "wheels", which are the binary package installers hosted on PyPI.
# GitHub Actions is super helpful here because each one needs to be compiled in its own
# target environment. The wheel files are saved as artifacts, which you can download from
# the GitHub website. Wheels should be uploaded manually to PyPI -- see CONTRIBUTING.md.
# The Linux wheels cannot be generated using `ubuntu-latest` because they require a
# special Docker image to provide cross-Linux compatibility. There are at least a couple
# of third-party actions set up using the official image; we could switch to another if
# this ever breaks.
on:
# push:
pull_request:
release:
workflow_dispatch:
jobs:
build-manylinux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# with:
# ref: 'v0.6' # enable to check out prior version of codebase
- name: Build wheels
uses: RalfG/[email protected]
with:
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311'
- name: Save artifacts
uses: actions/upload-artifact@v2
with:
name: wheels
path: dist/*-manylinux*.whl
build:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0} # needed for conda persistence
strategy:
matrix:
os: [macos-latest, windows-latest]
python-version: [3.8, 3.9, '3.10', '3.11']
steps:
- uses: actions/checkout@v2
# with:
# ref: 'v0.6' # enable to check out prior version of codebase
- name: Set up Python ${{ matrix.python-version }}
uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up environment
run: |
conda config --append channels conda-forge
conda install build clang llvm-openmp
- name: Build wheel
run: |
python -m build --sdist --wheel
- name: Save artifacts
uses: actions/upload-artifact@v2
with:
name: wheels
path: dist/*.whl