-
Notifications
You must be signed in to change notification settings - Fork 221
237 lines (199 loc) · 6.01 KB
/
main.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
name: Check and PyPi Upload
on:
push:
branches:
- 'main'
tags:
- '*'
pull_request:
branches:
- '*'
jobs:
ubuntu22:
name: Ubuntu 22.04 x86_64
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: Get tags
run: |
git fetch --tags
echo $?
git tag --list
- name: Install pip
run: sudo apt-get install -y python3-pip
- name: Check style
run: |
python3 -m pip install pycodestyle
export PATH=$PATH:$HOME/.local/bin
pycodestyle examples/*
- name: Install prerequisites
run: |
python3 -m pip install -r requirements.txt -r requirements-dev.txt -r requirements-docs.txt
python3 -m pip install auditwheel twine
- name: Create wheel
run: |
python3 setup.py bdist_wheel
mkdir wheelhouse
export PATH=$PATH:$HOME/.local/bin
auditwheel repair --plat manylinux2014_x86_64 dist/*.whl
- name: Check the artifacts
run: |
ls -lh "wheelhouse/"
- name: Create docs
run: |
export PATH=$PATH:$HOME/.local/bin
make -C mavsdk html
- name: Upload to PyPi
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
TWINE_NON_INTERACTIVE: 1
if: startsWith(github.ref, 'refs/tags/')
run: |
export PATH=$PATH:$HOME/.local/bin
twine upload wheelhouse/*.whl
- name: Upload docs
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
if: startsWith(github.ref, 'refs/tags/')
run: |
export PATH=$PATH:$HOME/.local/bin
other/tools/upload_docs.sh
ubuntu22-other:
name: Ubuntu 22.04 ${{ matrix.arch }}
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- arch: armv6l
pypi_arch: linux_armv6l
- arch: armv7l
pypi_arch: linux_armv7l
- arch: aarch64
pypi_arch: manylinux2014_aarch64
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: Get tags
run: |
git fetch --tags
echo $?
git tag --list
- name: Install pip
run: sudo apt-get install -y python3-pip
- name: Install prerequisites
run: |
python3 -m pip install -r requirements.txt -r requirements-dev.txt
python3 -m pip install twine
- name: Create wheel
run: |
export MAVSDK_SERVER_ARCH=${{ matrix.arch }}
python3 setup.py bdist_wheel
ls dist/*any.whl | sed -e 'p;s/any/${{ matrix.pypi_arch }}/' | xargs -n2 mv
- name: Check the artifacts
run: |
ls -lh "dist/"
- name: Upload to PyPi
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
TWINE_NON_INTERACTIVE: 1
if: startsWith(github.ref, 'refs/tags/')
run: |
export PATH=$PATH:$HOME/.local/bin
twine upload dist/*.whl
macOS:
name: macOS ${{ matrix.arch }}
runs-on: ${{ matrix.runs_on }}
strategy:
matrix:
include:
- arch: x64
wheel_arch: 10_9_x86_64
runs_on: macos-13
- arch: arm64
wheel_arch: 11_0_arm64
runs_on: macos-14
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: Get tags
run: |
git fetch --tags
echo $?
git tag --list
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install prerequisites
run: |
python -m pip install -r requirements.txt
python -m pip install twine wheel
python -m pip install --user delocate
- name: Create wheel
run: |
python setup.py bdist_wheel
export PATH="$(python -m site --user-base)/bin:$PATH"
delocate-wheel -w wheelhouse -v dist/*.whl
ls wheelhouse/*any.whl | sed -e 'p;s/any/macosx_${{ matrix.wheel_arch }}/' | xargs -n2 mv
- name: Check the artifacts
run: |
ls -lh "wheelhouse/"
- name: Upload to PyPi
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
TWINE_NON_INTERACTIVE: 1
if: startsWith(github.ref, 'refs/tags/')
run: |
export PATH=$PATH:$HOME/.local/bin
twine upload wheelhouse/*.whl
Windows:
name: Windows (${{ matrix.arch }})
runs-on: windows-latest
strategy:
matrix:
include:
- arch: x86
wheel_arch: win32
- arch: x64
wheel_arch: win_amd64
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: Get tags
run: |
git fetch --tags
echo $?
git tag --list
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
architecture: ${{ matrix.arch }}
- name: Install prerequisites
run: |
python3 -m pip install -r requirements.txt -r requirements-dev.txt
python3 -m pip install twine wheel
- name: Create wheel
run: |
python3 setup.py bdist_wheel
Dir "dist/" | rename-item -NewName {$_.name -replace '-any.whl','-${{ matrix.wheel_arch }}.whl'}
- name: Check the artifacts
run: |
ls "dist/"
- name: Upload to PyPi
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
TWINE_NON_INTERACTIVE: 1
if: startsWith(github.ref, 'refs/tags/')
run: |
twine upload dist/*.whl