-
Notifications
You must be signed in to change notification settings - Fork 8
174 lines (137 loc) · 4.39 KB
/
CI.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
# Weekly build to make sure dependencies are OK
- cron: '30 14 * * 3'
workflow_dispatch:
inputs:
guard:
description: 'Do not run manually. Run "publish" to publish on Pypi'
required: true
repository_url:
description: 'URL of the pypi repository to upload to'
required: true
default: 'https://test.pypi.org/legacy/'
jobs:
Source:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install sdist dependencies
run: pip3 install setuptools
- name: Generate source distribution tarball
run: python3 setup.py sdist
- name: Build source distribution
run: |
sudo apt-get install -y libusb-1.0-0-dev ninja-build
pip3 install wheel
pip3 wheel dist/*.tar.gz
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: source-build
path: "dist/*.tar.gz"
Linux:
runs-on: ubuntu-22.04
needs: Source
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Pull builder image
run: docker pull quay.io/pypa/manylinux2014_x86_64
- name: Python version
run: python --version
- name: Build wheels
run: tools/build/build-wheels.sh ${{ matrix.python }}
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: linux-build
path: "dist/*.whl"
MacOS:
runs-on: macos-12
needs: Source
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip install cmake ninja wheel
- name: Build
run: python setup.py bdist_wheel
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: macos-build
path: "dist/*.whl"
Windows:
runs-on: windows-2022
needs: Source
strategy:
matrix:
python: ['3.8', '3.9']
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip install wheel
- name: Build
run: python setup.py bdist_wheel
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: win-build
path: "dist/*.whl"
Publish:
runs-on: ubuntu-22.04
needs: [Source, Linux, MacOS, Windows]
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.guard == 'do-release' }}
steps:
- uses: actions/download-artifact@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Check match between the build version and the current git tag
run: |
sudo apt-get install -y jq
pip3 install wheel-inspect
export TAG=$(echo ${{ github.ref }} | cut -d/ -f3)
python3 -m wheel_inspect *-build/*.whl | jq .version | grep ^\\\"$TAG\\\"$
- name: Publish on Pypi
if: ${{ github.event_name == 'workflow_dispatch' }}
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
pip3 install setuptools
pip3 install twine
python3 -m twine check source-build/*
python3 -m twine check linux-build/*
python3 -m twine check macos-build/*
python3 -m twine check win-build/*
python3 -m twine upload --skip-existing --repository-url ${{ github.event.inputs.repository_url }} source-build/*
python3 -m twine upload --skip-existing --repository-url ${{ github.event.inputs.repository_url }} linux-build/*
python3 -m twine upload --skip-existing --repository-url ${{ github.event.inputs.repository_url }} macos-build/*
python3 -m twine upload --skip-existing --repository-url ${{ github.event.inputs.repository_url }} win-build/*