-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (77 loc) · 2.45 KB
/
release.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: Release
on:
push:
tags:
- '*'
pull_request: # also build on PRs touching this file
paths:
- ".github/workflows/release.yml"
workflow_dispatch:
jobs:
build_sdist:
name: Build sdist
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Build a source tarball
run: |
python -m pip install --upgrade pip
pip install build
python -m build
- uses: actions/upload-artifact@v3
with:
path: ./dist/*.tar.gz
retention-days: 5
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
steps:
- name: Checkout source
uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
if: matrix.os == 'windows-2019'
- name: Build wheels
uses: pypa/[email protected]
# to supply options, put them in 'env', like:
env:
CIBW_SKIP: "pp* *musllinux*" # skips pypy and musllinux
CIBW_ARCHS: auto64 # only 64-bit (convincing CMAKE of 32-bit is a TODO)
CIBW_ENVIRONMENT_MACOS:
FC=gfortran-12
CIBW_BEFORE_ALL: cat WHEEL_LICENSE_POSIX >> LICENSE
CIBW_BEFORE_ALL_WINDOWS: cat WHEEL_LICENSE_WINDOWS >> LICENSE
CIBW_BEFORE_BUILD_WINDOWS: pip install delvewheel
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: >-
delvewheel repair -w {dest_dir}
--no-mangle "libwinpthread-1.dll" {wheel}
CIBW_BUILD_VERBOSITY: 1
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
retention-days: 5
# publish:
# name: Publish on GitHub and PyPI
# needs: [build_sdist, build_wheels]
# runs-on: ubuntu-latest
# # release on every tag
# if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
# steps:
# - uses: actions/download-artifact@v3
# with:
# name: artifact
# path: dist
# - name: Upload Github release
# uses: softprops/action-gh-release@v1
# - name: Upload Release Assets to PyPI
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# password: ${{ secrets.PYPI_UPLOAD_TOKEN }}