-
Notifications
You must be signed in to change notification settings - Fork 10
421 lines (356 loc) · 12.5 KB
/
build.yml
File metadata and controls
421 lines (356 loc) · 12.5 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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
name: Build
on:
schedule:
- cron: '0 3 * * *' # 每天凌晨3点运行一次测试构建
# 1. 当代码推送到 main 分支时
push:
branches:
- 'master'
# 且修改了应用或文档相关文件
paths:
- 'composeApp/**' # Kotlin Multiplatform 核心代码
- 'gradle/**' # Gradle wrapper
- 'build.gradle.kts'
- 'settings.gradle.kts'
- 'gradle.properties'
- '.github/workflows/**' # 工作流自身变更
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
name: Run tests
steps:
- uses: actions/checkout@v6
with:
submodules: 'recursive'
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v5
- name: Setup JDK
uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: 21
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
- name: Run tests
run: ./gradlew jvmTest
build-desktop:
strategy:
fail-fast: false
matrix:
include:
- name: macos-aarch64
runner: macos-latest
task: ./gradlew packageReleaseDmg
- name: macos-x86_64
runner: macos-15-intel
task: ./gradlew packageReleaseDmg
- name: linux-x86_64
runner: ubuntu-22.04
task: ./gradlew createReleaseDistributable packageReleaseDeb packageReleaseRpm
# - name: linux-aarch64
# runner: ubuntu-24.04-arm
# task: ./gradlew createReleaseDistributable packageReleaseDeb packageReleaseRpm
- name: windows-x86_64
runner: windows-latest
task: ./gradlew.bat createReleaseDistributable packageReleaseMsi packageReleaseExe
# - name: windows-arm64
# runner: windows-11-arm
# task: ./gradlew.bat createReleaseDistributable packageReleaseMsi packageReleaseExe
runs-on: ${{ matrix.runner }}
name: Build ${{ matrix.name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
# [新增] 针对 Windows 平台开启长路径支持
- name: Enable Windows Long Paths
if: startsWith(matrix.name, 'windows')
run: |
git config --system core.longpaths true
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
shell: powershell
- uses: actions/checkout@v6
with:
submodules: 'recursive'
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v5
- name: Setup JDK
uses: actions/setup-java@v5
with:
distribution: ${{ startsWith(matrix.name, 'windows') && 'jetbrains' || 'zulu' }}
java-version: 21
- name: Install Vulkan SDK
uses: humbletim/install-vulkan-sdk@v1.2
with:
version: 1.4.309.0
cache: true
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
- name: Setup MSBuild (Windows)
if: startsWith(matrix.name, 'windows')
uses: microsoft/setup-msbuild@v2
- name: Build
if: "!startsWith(matrix.name, 'windows')"
run: ${{ matrix.task }}
- name: Build (Windows)
if: startsWith(matrix.name, 'windows')
run: |
subst V: (Get-Location).Path
Set-Location V:
${{ matrix.task }}
- name: Upload artifact
if: success()
uses: actions/upload-artifact@v5
with:
name: ${{ matrix.name }}
path: composeApp/build/compose/binaries/main-release
build-mobile:
strategy:
fail-fast: false
matrix:
include:
- name: ios
task: ./gradlew buildReleaseIpa
path: composeApp/build/archives/release/*.ipa
- name: android
task: ./gradlew assembleRelease
path: composeApp/build/outputs/apk/release/*.apk
runs-on: macos-latest
name: Build ${{ matrix.name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v6
with:
submodules: 'recursive'
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v5
- name: Setup JDK
uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: 21
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
# [修改] 使用 setup-vulkan Action 来安装 Vulkan SDK
- name: Install Vulkan SDK
uses: humbletim/install-vulkan-sdk@v1.2
with:
version: 1.4.309.0
cache: true
- name: Setup Signing
id: sign
if: ${{ matrix.name == 'android' }}
run: |
base64 --decode <<< "${{ secrets.RELEASE_KEY }}" > composeApp/release.jks
grep -q '[^[:space:]]' composeApp/release.jks && echo release_key_exists=true >> $GITHUB_OUTPUT || echo release_key_exists=false >> $GITHUB_OUTPUT
- name: Build
env:
RELEASE_KEY_EXISTS: ${{ steps.sign.outputs.release_key_exists }}
RELEASE_KEY_STORE_PASSWORD: ${{ secrets.RELEASE_KEY_PASSWORD }}
RELEASE_KEY_PASSWORD: ${{ secrets.RELEASE_KEY_PASSWORD }}
run: ${{ matrix.task }}
- name: Upload artifact
if: success()
uses: actions/upload-artifact@v5
with:
name: ${{ matrix.name }}
path: ${{ matrix.path }}
package:
needs: build-desktop
runs-on: ubuntu-latest
name: Package artifacts
steps:
# 下载所有需要的 artifacts
- name: Download macOS aarch64 artifact
uses: actions/download-artifact@v5
with:
name: macos-aarch64
path: macos-aarch64
- name: Download macOS x86_64 artifact
uses: actions/download-artifact@v5
with:
name: macos-x86_64
path: macos-x86_64
- name: Download Linux x86_64 artifact
uses: actions/download-artifact@v5
with:
name: linux-x86_64
path: linux-x86_64
- name: Download Windows x86_64 artifact
uses: actions/download-artifact@v5
with:
name: windows-x86_64
path: windows-x86_64
# - name: Download Windows arm64 artifact
# uses: actions/download-artifact@v5
# with:
# name: windows-arm64
# path: windows-arm64
# 重命名文件
- name: Rename artifacts
run: |
# Get base filename from macOS DMG
DMG_FILE=$(find macos-aarch64/dmg -name "*.dmg" -type f | head -n 1)
BASE_NAME=$(basename "$DMG_FILE" .dmg)
echo "Base filename: $BASE_NAME"
# macOS
for arch in aarch64 x86_64; do
if [ -d "macos-${arch}/dmg" ]; then
for file in macos-${arch}/dmg/*.dmg; do
if [ -f "$file" ]; then
filename=$(basename "$file" .dmg)
mv "$file" "macos-${arch}/dmg/${filename}-macos-${arch}.dmg"
fi
done
fi
done
# Windows
for arch in x86_64 arm64; do
if [ -d "windows-${arch}/msi" ]; then
for file in windows-${arch}/msi/*.msi; do
if [ -f "$file" ]; then
filename=$(basename "$file" .msi)
mv "$file" "windows-${arch}/msi/${filename}-windows-${arch}.msi"
fi
done
fi
if [ -d "windows-${arch}/exe" ]; then
for file in windows-${arch}/exe/*.exe; do
if [ -f "$file" ]; then
filename=$(basename "$file" .exe)
mv "$file" "windows-${arch}/exe/${filename}-windows-${arch}.exe"
fi
done
fi
# Package portable as zip
if [ -d "windows-${arch}/app/MineStableDiffusion" ]; then
cd windows-${arch}/app
zip -r "../../${BASE_NAME}-windows-${arch}.zip" MineStableDiffusion
cd ../..
fi
done
# 上传新的 artifacts
- name: Upload macOS aarch64 DMG
uses: actions/upload-artifact@v5
with:
name: macos-aarch64-dmg
path: macos-aarch64/dmg/*.dmg
- name: Upload macOS x86_64 DMG
uses: actions/upload-artifact@v5
with:
name: macos-x86_64-dmg
path: macos-x86_64/dmg/*.dmg
- name: Upload Linux x86_64 DEB
uses: actions/upload-artifact@v5
with:
name: linux-x86_64-deb
path: linux-x86_64/deb/*.deb
- name: Upload Linux x86_64 RPM
uses: actions/upload-artifact@v5
with:
name: linux-x86_64-rpm
path: linux-x86_64/rpm/*.rpm
- name: Upload Windows x86_64 MSI
uses: actions/upload-artifact@v5
with:
name: windows-x86_64-msi
path: windows-x86_64/msi/*.msi
- name: Upload Windows x86_64 EXE
uses: actions/upload-artifact@v5
with:
name: windows-x86_64-exe
path: windows-x86_64/exe/*.exe
- name: Upload Windows x86_64 Portable
uses: actions/upload-artifact@v5
with:
name: windows-x86_64-portable
path: '*-windows-x86_64.zip'
package-appimage:
needs: build-desktop
strategy:
fail-fast: false
matrix:
include:
- arch: x86_64
runner: ubuntu-latest
appimagetool: appimagetool-x86_64.AppImage
runs-on: ${{ matrix.runner }}
name: Build Linux ${{ matrix.arch }} AppImage
steps:
- uses: actions/checkout@v6
with:
submodules: 'recursive'
- name: Download macOS aarch64 artifact
uses: actions/download-artifact@v5
with:
name: macos-aarch64
path: macos-aarch64
- name: Download Linux ${{ matrix.arch }} artifact
uses: actions/download-artifact@v5
with:
name: linux-${{ matrix.arch }}
path: linux-${{ matrix.arch }}
- name: Build AppImage
run: |
# Get base filename from macOS DMG
DMG_FILE=$(find macos-aarch64/dmg -name "*.dmg" -type f | head -n 1)
BASE_NAME=$(basename "$DMG_FILE" .dmg)
echo "Base filename: $BASE_NAME"
# Download appimagetool
wget https://github.com/AppImage/appimagetool/releases/download/continuous/${{ matrix.appimagetool }}
chmod +x ${{ matrix.appimagetool }}
# Prepare AppDir
mkdir -p AppDir/usr
cp -r linux-${{ matrix.arch }}/app/MineStableDiffusion/* AppDir/usr
# Create desktop file
cat > AppDir/MineStableDiffusion.desktop << 'EOF'
[Desktop Entry]
Name=MineStableDiffusion
Exec=MineStableDiffusion
Icon=MineStableDiffusion
Terminal=false
Type=Application
Categories=Utility;
EOF
# Create AppRun script
cat > AppDir/AppRun << 'EOF'
#!/bin/bash
SELF=$(readlink -f "$0")
HERE=${SELF%/*}
export PATH="${HERE}/usr/bin/:${PATH}"
export LD_LIBRARY_PATH="${HERE}/usr/lib/:${LD_LIBRARY_PATH}"
exec "${HERE}/usr/bin/MineStableDiffusion" "$@"
EOF
# Copy icon if exists
if [ -f "docs/AppIcon.png" ]; then
cp docs/AppIcon.png AppDir/MineStableDiffusion.png
fi
# Fix permissions
chmod a+x AppDir/AppRun
chmod a+x AppDir/usr/bin/MineStableDiffusion
# Build AppImage
ARCH=${{ matrix.arch }} ./${{ matrix.appimagetool }} AppDir
# Rename AppImage with base name from DMG
mv MineStableDiffusion-${{ matrix.arch }}.AppImage ${BASE_NAME}-linux-${{ matrix.arch }}.AppImage
chmod a+x ${BASE_NAME}-linux-${{ matrix.arch }}.AppImage
- name: Upload AppImage artifact
uses: actions/upload-artifact@v5
with:
name: linux-${{ matrix.arch }}-appimage
path: '*-linux-${{ matrix.arch }}.AppImage'
cleanup:
needs: [ package-appimage, package ]
runs-on: ubuntu-latest
name: Cleanup original artifacts
steps:
- name: Delete original artifacts
uses: geekyeggo/delete-artifact@v5
with:
name: |
macos-aarch64
macos-x86_64
linux-x86_64
linux-aarch64
windows-x86_64
windows-arm64