-
-
Notifications
You must be signed in to change notification settings - Fork 100
362 lines (307 loc) · 9.66 KB
/
build.yml
File metadata and controls
362 lines (307 loc) · 9.66 KB
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
name: New Release (v2)
run-name: Release v${{ github.event.inputs.tag }}
on:
workflow_dispatch:
inputs:
tag:
description: "Version number"
required: true
default: "0.0.0"
binary_build:
description: "Build binaries"
required: true
default: "true"
type: choice
options:
- true
- false
is_latest:
description: "Set as latest"
required: true
default: "false"
type: choice
options:
- true
- false
build_docker:
description: "Build Docker image"
required: true
type: choice
default: "true"
options:
- true
- false
env:
PIP_USE_PEP517: true
jobs:
build-client:
runs-on: ubuntu-latest
name: Build client
steps:
- name: Clone client
uses: actions/checkout@v4
with:
repository: "swingmx/webclient"
path: swingmusic-client
- name: Setup Node 20
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install yarn
run: |
npm install -g yarn
- name: Install dependencies & Build client
run: |
cd swingmusic-client
yarn install
yarn build --outDir ../client
cd ..
- name: Upload client
uses: actions/upload-artifact@v4
with:
path: "client/"
compression-level: 0
name: "client"
build-wheels:
name: Build wheels
runs-on: ubuntu-latest
needs: [build-client]
steps:
- name: Checkout swingmusic
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download client artifact
uses: actions/download-artifact@v4
with:
name: client
path: client
- name: Compress client and copy to src/swingmusic/client.zip
run: |
zip -r client.zip client
rm -r client
cp client.zip src/swingmusic/client.zip
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Create git tag
run: |
git tag v${{ github.event.inputs.tag }}
- name: Build wheels
run: pip wheel . -w wheelhouse --no-deps
- uses: actions/upload-artifact@v4
with:
# name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
compression-level: 0
name: "wheels"
build-appimage:
name: Build Appimage
runs-on: ${{ matrix.os }}
needs: [build-client]
if: ${{ github.event.inputs.binary_build == 'true' }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm]
steps:
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install linux dependencies
run: sudo apt-get install libev-dev libfuse-dev -y > /dev/null
- name: Checkout swingmusic
uses: actions/checkout@v5
with:
fetch-depth: 0
sparse-checkout: appimage
- name: Set architecture-specific variables
run: |
if ${{ endsWith(matrix.os, 'arm') }}; then
echo "APPIMAGE_ARCH=aarch64" >> $GITHUB_ENV
else
echo "APPIMAGE_ARCH=x86_64" >> $GITHUB_ENV
fi
- name: Install appimage builder
run: |
pip install python-appimage
wget -nv -c "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-$APPIMAGE_ARCH.AppImage"
chmod +x "appimagetool-$APPIMAGE_ARCH.AppImage"
- name: Download client artifact
uses: actions/download-artifact@v4
with:
name: client
path: client
- name: Download wheel artifact
uses: actions/download-artifact@v4
with:
name: wheels
path: wheels
merge-multiple: true
- name: Build appimage
run: |
python-appimage build app -p 3.11 appimage/ -n "swingmusic-$APPIMAGE_ARCH" -x client --no-packaging
pip install --target "swingmusic-$APPIMAGE_ARCH/opt/python3.11/lib/python3.11/" --no-deps --find-links=wheels/ swingmusic
./appimagetool-$APPIMAGE_ARCH.AppImage --no-appstream "swingmusic-$APPIMAGE_ARCH" "swingmusic-${{github.ref_name}}-$APPIMAGE_ARCH.AppImage"
- uses: actions/upload-artifact@v4
with:
path: ./swing*.AppImage
compression-level: 0
name: appimage-${{ env.APPIMAGE_ARCH }}
docker:
name: Build and push Docker image
runs-on: ubuntu-latest
needs: [build-client, build-wheels]
permissions: write-all
if: ${{ github.event.inputs.build_docker == 'true' }}
steps:
- name: Checkout into repo
uses: actions/checkout@v3
- name: Download artifact
uses: actions/download-artifact@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Login to GHCR
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta # you'll use this in the next step
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
ghcr.io/${{ github.repository }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64, linux/arm64 #,linux/arm
push: true
tags: ghcr.io/${{github.repository}}:${{format('{0}', github.ref_name)}}, ghcr.io/${{github.repository}}:latest
labels: org.opencontainers.image.title=Docker
build-pyinstaller:
name: Build binary on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
needs: [build-client, build-wheels]
if: ${{ github.event.inputs.binary_build == 'true' }}
strategy:
fail-fast: false
matrix:
os:
[
ubuntu-latest,
ubuntu-24.04-arm,
windows-latest,
windows-11-arm,
macos-13,
macos-latest,
]
steps:
- name: Checkout swingmusic
uses: actions/checkout@v4
with:
sparse-checkout: |
swingmusic.spec
src/swingmusic/assets
- name: Install Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11.x"
- name: Download client artifact
uses: actions/download-artifact@v4
with:
name: client
path: client
- name: Compress client (Unix)
if: runner.os != 'Windows'
run: |
zip -r client.zip client
- name: Compress client (Windows)
if: runner.os == 'Windows'
run: |
Compress-Archive -Path client -DestinationPath client.zip -Force
- name: Download wheel artifact
uses: actions/download-artifact@v4
with:
name: wheels
path: wheels
merge-multiple: true
# install system packages
- name: Setup Homebrew
if: ${{ startsWith(matrix.os, 'macos') }}
uses: Homebrew/actions/setup-homebrew@master
- name: Install libev (macOS)
if: ${{ startsWith(matrix.os, 'macos') }}
run: |
brew install libev
- name: Install libev (Linux)
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: |
sudo apt-get install libev-dev -y > /dev/null
- name: Install swingmusic
run: |
pip install --find-links=wheels/ swingmusic[build]
- name: Build with Pyinstaller on ${{ matrix.os }}
run: pyinstaller swingmusic.spec
- name: upload artifact
uses: actions/upload-artifact@v4
with:
name: Pyinstaller-${{ matrix.os }}
path: ./dist/swingmusic_*
compression-level: 0
upload-builds:
name: Uploading builds to release
runs-on: ubuntu-latest
needs: [build-client, build-wheels, build-pyinstaller, build-appimage]
steps:
- name: Checkout swingmusic
uses: actions/checkout@v4
with:
sparse-checkout: |
.github/changelog.md
- name: Download client artifact
uses: actions/download-artifact@v4
with:
name: client
path: client
- name: compress client
run: |
zip -r client.zip client
rm -r client
- name: Download wheel artifacts
uses: actions/download-artifact@v4
with:
name: wheels
path: wheels
merge-multiple: true
- name: Download all Pyinstaller builds
uses: actions/download-artifact@v4
with:
pattern: Pyinstaller-*
path: pyinstaller
merge-multiple: true
- name: Download AppImages build
uses: actions/download-artifact@v4
with:
pattern: appimage*
path: appimage
merge-multiple: true
- name: Upload artifacts to GitHub Release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
draft: true
name: ${{ format('v{0}',github.event.inputs.tag) }}
tag: ${{ format('v{0}',github.event.inputs.tag) }}
bodyFile: .github/changelog.md
artifactErrorsFailBuild: true
commit: ${{ github.sha }}
makeLatest: ${{github.event.inputs.is_latest == 'true'}}
artifacts: "client.zip,wheels/*,pyinstaller/*,appimage/*"
token: ${{ secrets.GITHUB_TOKEN }}