-
Notifications
You must be signed in to change notification settings - Fork 4
104 lines (87 loc) · 2.91 KB
/
build.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
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Build
on:
workflow_dispatch:
pull_request:
push:
branches:
- release
jobs:
build_sdist:
name: Build SDist
runs-on: ubuntu-latest
steps:
- name: Checkout out repo and submodules
uses: actions/checkout@v3
with:
submodules: true
- name: Build SDist
run: pipx run build --sdist
- name: Check metadata
run: pipx run twine check dist/*
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
build_wheels:
runs-on: ${{ matrix.os_dist.os }}
env:
CIBW_BUILD: "${{ matrix.os_dist.dist }}"
MACOSX_DEPLOYMENT_TARGET: "13.1"
CIBW_ARCHS_MACOS: "arm64 x86_64"
CIBW_REPAIR_WHEEL_COMMAND_MACOS: delocate-wheel -w {dest_dir} -v {wheel}
strategy:
fail-fast: false
matrix:
os_dist: [
# # macosx x86_64
# {os: macos-latest, dist: cp38-macosx_x86_64},
# {os: macos-latest, dist: cp39-macosx_x86_64},
# {os: macos-latest, dist: cp310-macosx_x86_64},
# {os: macos-latest, dist: cp311-macosx_x86_64},
# # macosx arm64
# {os: macos-latest, dist: cp38-macosx_arm64},
# {os: macos-latest, dist: cp39-macosx_arm64},
# {os: macos-latest, dist: cp310-macosx_arm64},
# {os: macos-latest, dist: cp311-macosx_arm64},
# # macosx universal2
# # {os: macos-latest, dist: cp38-macosx_universal2},
# # {os: macos-latest, dist: cp39-macosx_universal2},
# # {os: macos-latest, dist: cp310-macosx_universal2},
# # {os: macos-latest, dist: cp311-macosx_universal2},
# # windows amd64
# {os: windows-latest, dist: cp38-win_amd64},
# {os: windows-latest, dist: cp39-win_amd64},
# {os: windows-latest, dist: cp310-win_amd64},
# {os: windows-latest, dist: cp311-win_amd64},
# ubuntu x86_64
# {os: ubuntu-latest, dist: cp38-manylinux_x86_64},
{os: ubuntu-latest, dist: cp39-manylinux_x86_64},
{os: ubuntu-latest, dist: cp310-manylinux_x86_64},
{os: ubuntu-latest, dist: cp311-manylinux_x86_64},
{os: ubuntu-latest, dist: cp312-manylinux_x86_64},
]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: pypa/cibuildwheel@v2.11.1
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl
upload_pypi:
needs: [ build_wheels, build_sdist ]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.LDPC_TEST_PYPI }}
repository-url: https://test.pypi.org/legacy/
skip-existing: true
verbose: true