-
Notifications
You must be signed in to change notification settings - Fork 4
314 lines (304 loc) · 11.2 KB
/
package.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
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
name: Packaging
on:
push:
tags:
- "v*"
env:
PYINSTALLER_VERSION: "6.11.0"
LIBMEDIAINFO_VERSION: "24.11"
jobs:
make-outputs:
runs-on: ubuntu-latest
outputs:
VERSION: ${{ steps.get_version.outputs.VERSION }}
steps:
- name: Get version
id: get_version
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_OUTPUT
release_windows_amd64:
runs-on: windows-latest
needs: [make-outputs]
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Build with pyinstaller
shell: bash -el {0}
run: |
uv venv --python 3.13
uv build --wheel
cd packaging
uv pip install -r requirements.txt
uv pip install ../dist/*.whl --no-deps
uv run pyinstaller libresvip.spec
cd dist
7z a LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.win-amd64.7z libresvip
rm -rf libresvip
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: libresvip-win-amd64.7z
path: ./packaging/dist/
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: v${{ needs.make-outputs.outputs.VERSION }}
files: |
./packaging/dist/LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.win-amd64.7z
release_windows_msys2_ucrt64:
runs-on: windows-latest
needs: [make-outputs]
steps:
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: UCRT64
update: true
install: >-
mingw-w64-ucrt-x86_64-python-pip
mingw-w64-ucrt-x86_64-uv
p7zip
- name: Build with pyinstaller
shell: msys2 {0}
run: |
uv build --wheel
cd packaging
python mingw_install.py
python -m pip install ../dist/*.whl --no-deps
pyinstaller libresvip.spec
cd dist
7z a LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.msys2-ucrt64.7z libresvip
rm -rf libresvip
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: libresvip-msys2-ucrt64.7z
path: ./packaging/dist/
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: v${{ needs.make-outputs.outputs.VERSION }}
files: |
./packaging/dist/LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.msys2-ucrt64.7z
release_windows_webview:
runs-on: windows-latest
needs: [make-outputs]
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Build with pyinstaller
shell: bash -el {0}
run: |
uv venv --python 3.12
uv sync --extra webui --extra ujson --extra ruamel_yaml --extra lxml --no-editable
uv pip install pywebview --python .venv/Scripts/python.exe
cd packaging
uv pip install -r requirements-pyinstaller.in --python ../.venv/Scripts/python.exe
uv run pyinstaller libresvip-web.spec
cd dist
7z a LibreSVIP-web-${{ needs.make-outputs.outputs.VERSION }}.win-amd64.7z libresvip-web
rm -rf libresvip-web
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: libresvip-web-win-amd64.7z
path: ./packaging/dist/
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: v${{ needs.make-outputs.outputs.VERSION }}
files: |
./packaging/dist/LibreSVIP-web-${{ needs.make-outputs.outputs.VERSION }}.win-amd64.7z
release_windows_arm64:
runs-on: ubuntu-latest
needs: [make-outputs]
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Build with pyinstaller
run: |
uv build --wheel
uv venv --python 3.12
cd packaging
export MINGW_PACKAGE_PREFIX=mingw-w64-clang-aarch64
export MSYSTEM=CLANGARM64
uv run python -m ensurepip
uv run python mingw_install.py
docker compose -f docker-compose-msys2-clangarm64.yml up
uv run python -m pip download pyinstaller==$PYINSTALLER_VERSION --platform win_arm64 --only-binary=:all:
uv run python -m pip install wheel
uv run python -m wheel unpack pyinstaller-$PYINSTALLER_VERSION-py3-none-win_arm64.whl
sudo mv ./pyinstaller-$PYINSTALLER_VERSION/PyInstaller/bootloader/Windows-64bit-arm ./clangarm64/lib/python3.12/site-packages/PyInstaller/bootloader
sudo cp ./clangarm64/bin/libmediainfo-0.dll ./clangarm64/lib/python3.12/site-packages/pymediainfo/
docker compose -f docker-compose-build-wine-arm64.yml up
mkdir archive
cd dist
7z a ../archive/LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.win-arm64.7z libresvip
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: libresvip-win-arm64.7z
path: ./packaging/archive/
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: v${{ needs.make-outputs.outputs.VERSION }}
files: |
./packaging/archive/LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.win-arm64.7z
release_linux_x86_64:
runs-on: ubuntu-latest
needs: [make-outputs]
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Install OS dependencies
run: |
sudo apt-get update
sudo apt-get install -y libegl1
- name: Build with pyinstaller
run: |
uv build --wheel
uv venv --python 3.13
cd packaging
uv pip install -r requirements.txt
uv pip install ../dist/*.whl --no-deps
uv run pyinstaller libresvip.spec
cd dist
tar -czvf LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.linux-x86_64.tar.gz libresvip
rm -rf libresvip
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: libresvip-linux-x86_64.tar.gz
path: ./packaging/dist/
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: v${{ needs.make-outputs.outputs.VERSION }}
files: |
./packaging/dist/LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.linux-x86_64.tar.gz
release_linux_aarch64:
runs-on: ubuntu-latest
needs: [make-outputs]
steps:
- uses: actions/checkout@v4
- uses: uraimo/run-on-arch-action@v2
name: Build artifact
with:
arch: aarch64
distro: ubuntu20.04
dockerRunArgs: --volume "${PWD}:/libresvip"
install: |
apt-get update
apt-get install -y binutils curl libdouble-conversion3 libfreetype6 libfontconfig1 libegl1 libgl1 libglib2.0-0 libmediainfo-dev libtiff5 libwayland-dev libwebp6 libwebpdemux2 libwebpmux3 libxt6
run: |
cd /libresvip
curl -LsSf https://astral.sh/uv/install.sh | sh
source $HOME/.local/bin/env
uv venv --python 3.13
uv build --wheel
cd packaging
uv pip install -r requirements.txt
uv pip install ../dist/*.whl --no-deps
uv run pyinstaller libresvip.spec
cd dist
tar -czvf LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.linux-aarch64.tar.gz libresvip
rm -rf libresvip
cd ../..
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: libresvip-linux-aarch64.tar.gz
path: ./packaging/dist
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: v${{ needs.make-outputs.outputs.VERSION }}
files: |
./packaging/dist/LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.linux-aarch64.tar.gz
release_macos_x86_64:
runs-on: macos-13
needs: [make-outputs]
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Build with pyinstaller
run: |
uv build --wheel
uv venv --python 3.13
cd packaging
uv pip install -r requirements.txt
uv pip install ../dist/*.whl --no-deps
uv run python -m PyInstaller libresvip.spec
brew install create-dmg
create-dmg --volname "LibreSVIP" dist/LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.macos-x86_64.dmg ./dist/LibreSVIP.app
rm -rf ./dist/LibreSVIP.app
cd ..
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: libresvip-macos-x86_64.dmg
path: ./packaging/dist/
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: v${{ needs.make-outputs.outputs.VERSION }}
files: |
./packaging/dist/LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.macos-x86_64.dmg
release_macos_arm64:
runs-on: macos-latest
needs: [make-outputs]
steps:
- uses: actions/checkout@v4
- name: Set up uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Build with pyinstaller
run: |
uv build --wheel
uv venv --python 3.13
cd packaging
uv pip install -r requirements.txt
curl -L https://mediaarea.net/download/binary/libmediainfo0/${LIBMEDIAINFO_VERSION}/MediaInfo_DLL_${LIBMEDIAINFO_VERSION}_Mac_x86_64+arm64.tar.bz2 --output libmediainfo.tar.bz2
tar xvf libmediainfo.tar.bz2
mv MediaInfoLib/libmediainfo.0.dylib ../.venv/lib/python3.13/site-packages/pymediainfo/
uv pip install ../dist/*.whl --no-deps
uv run python -m PyInstaller libresvip.spec
brew install create-dmg
create-dmg --volname "LibreSVIP" dist/LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.macos-arm64.dmg ./dist/LibreSVIP.app
rm -rf ./dist/LibreSVIP.app
cd ..
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: libresvip-macos-arm64.dmg
path: ./packaging/dist/
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: v${{ needs.make-outputs.outputs.VERSION }}
files: |
./packaging/dist/LibreSVIP-${{ needs.make-outputs.outputs.VERSION }}.macos-arm64.dmg