-
Notifications
You must be signed in to change notification settings - Fork 59
315 lines (276 loc) · 11.9 KB
/
build.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
315
name: Build
on:
push:
paths-ignore:
- '**/*.md'
pull_request:
paths-ignore:
- '**/*.md'
jobs:
build:
name: "${{ matrix.name }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners
os:
- windows-2019 # 16 GB
- ubuntu-20.04 # 16 GB
- macos-13 # x86_64, 14 GB
# - macos-14 # aarch64, 7 GB
include:
# matrix properties can be booleans. Check for plain true and false.
- os: windows-2019
name: Windows x86_64
uploadApk: true
arch: x64
anitorrent: true
anitorrent_separate_build: false # windows 单线程构建 anitorrent, 要一起跑节约时间
compose_resource_triple: windows-x64
run_tests: true
assemble: true
uploadDesktopInstallers: true
gradleArgs: '"-Dorg.gradle.jvmargs=-Xmx4096m" "-Dfile.encoding=UTF-8" "-Dkotlin.daemon.jvm.options=-Xmx4096M"'
- os: ubuntu-20.04
name: Ubuntu x86_64 (Compile only)
uploadApk: false
arch: x64
anitorrent: false
anitorrent_separate_build: false
compose_resource_triple: linux-x64
run_tests: false # 只编译, 因为 test 不支持 linux
assemble: false
uploadDesktopInstallers: false
gradleArgs: '-Dorg.gradle.jvmargs=-Xmx4096m -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options=-Xmx4096M'
- os: macos-13
name: macOS x86_64
uploadApk: false
arch: x64
anitorrent: true
anitorrent_separate_build: true # macOS native 构建快, 先构建 anitorrent, 再 assemble
compose_resource_triple: macos-x64
run_tests: true
assemble: true
uploadDesktopInstallers: false
gradleArgs: >-
-Dorg.gradle.jvmargs=-Xmx4g
-Dfile.encoding=UTF-8
-Dkotlin.daemon.jvm.options=-Xmx4g
-Pani.build.framework=false
-Pani.android.abis=arm64-v8a
# - os: macos-14
# name: macOS aarch64
# uploadApk: false
# arch: aarch64
# anitorrent: true
# anitorrent_separate_build: true
# compose_resource_triple: macos-arm64
# run_tests: false
# gradleArgs: >-
# -Dorg.gradle.jvmargs=-Xmx4g
# -Dfile.encoding=UTF-8
# -Dkotlin.daemon.jvm.options=-Xmx3g
# -Pani.build.framework=false
# -Pani.android.abis=arm64-v8a
# 这台机器硬盘小, 不要构建其他安卓架构
env:
gradleArgs: >-
--scan
"--no-configuration-cache"
${{ matrix.gradleArgs }}
${{ matrix.anitorrent == true && '"-Dani.enable.anitorrent=true"' || '' }}
${{ matrix.anitorrent == true && '"-DCMAKE_BUILD_TYPE=Release"' || '' }}
${{ startsWith(matrix.os, 'windows') && '"-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake"' || '' }}
${{ startsWith(matrix.os, 'windows') && '"-DBoost_INCLUDE_DIR=C:/vcpkg/installed/x64-windows/include"' || '' }}
# envs are strings, so check for 'true' or 'false'
isMac: ${{ startsWith(matrix.os, 'macos') }}
isWindows: ${{ startsWith(matrix.os, 'windows') }}
isUbuntu: ${{ startsWith(matrix.os, 'ubuntu') }}
isUnix: ${{ startsWith(matrix.os, 'macos') || startsWith(matrix.os, 'ubuntu') }}
doSigning: ${{ github.event_name != 'pull_request' && github.repository == 'open-ani/ani' }} # fork 和 PR 不使用签名
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- if: ${{ startsWith(matrix.os, 'macos') }}
name: Free space
run: chmod +x ./ci-helper/free-space-macos.sh && ./ci-helper/free-space-macos.sh
continue-on-error: true
# - uses: actions/setup-java@v4
# with:
# distribution: zulu
# java-version: 17
# architecture: ${{ matrix.arch }}
- name: Setup JBR 21
uses: gmitch215/setup-java@6d2c5e1f82f180ae79f799f0ed6e3e5efb4e664d
with:
distribution: 'jetbrains'
java-version: 21
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: echo "jvm.toolchain.version=21" >> local.properties
- if: ${{ env.isMac == 'true' }}
name: Install Native Dependencies
run: chmod +x ./ci-helper/install-deps-macos-ci.sh && ./ci-helper/install-deps-macos-ci.sh
- if: ${{ env.isWindows == 'true' }}
name: Setup vcpkg cache
uses: actions/github-script@v7
with:
script: |
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
- if: ${{ env.isWindows == 'true' }}
name: Install Native Dependencies
run: ./ci-helper/install-deps-windows.cmd
env:
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
cache-disabled: true # 缓存包含旧版本的, 太占位置了
- if: ${{ env.isUnix == 'true' }}
run: chmod -R 777 *
- name: Clean and download dependencies
if: ${{ matrix.run_tests }}
uses: nick-fields/retry@v2
with:
max_attempts: 3
timeout_minutes: 60
command: ./gradlew clean ${{ env.gradleArgs }}
- name: Update version name
run: ./gradlew updateDevVersionNameFromGit ${{ env.gradleArgs }}
# - name: Cache Anitorrent for Android
# if: ${{ matrix.anitorrent }}
# id: cache-anitorrent-android
# uses: actions/cache@v4
# with:
# path: |
# app/android/.cxx
# app/android/build
# key: ${{ runner.os }}-anitorrent-android
#
# - name: Cache Anitorrent for Desktop
# if: ${{ matrix.anitorrent }}
# id: cache-anitorrent-desktop
# uses: actions/cache@v4
# with:
# path: |
# torrent/anitorrent/anitorrent-native/build-ci/
# torrent/anitorrent/anitorrent-native/build/
# key: ${{ runner.os }}-anitorrent-desktop
# 备注: 这个可能已经不需要了, Compose 可能已经修复了这个 bug
- name: Explicitly generate Compose resources
run: ./gradlew generateComposeResClass ${{ env.gradleArgs }}
- if: ${{ matrix.uploadApk }}
name: Prepare signing key
id: android_signing_key
uses: timheuer/base64-to-file@v1.1
with:
fileName: 'android_signing_key'
fileDir: './'
encodedString: ${{ secrets.SIGNING_RELEASE_STOREFILE }}
continue-on-error: true
- name: Build Anitorrent for Desktop
if: ${{ matrix.anitorrent && matrix.anitorrent_separate_build }}
run: ./gradlew :torrent:anitorrent:build :torrent:anitorrent:anitorrent-native:buildAnitorrent ${{ env.gradleArgs }}
- name: Build Anitorrent for Android Debug
if: ${{ matrix.anitorrent }}
run: ./gradlew buildCMakeDebug ${{ env.gradleArgs }}
- name: Build Anitorrent for Android Release
if: ${{ matrix.anitorrent }}
run: ./gradlew buildCMakeRelWithDebInfo ${{ env.gradleArgs }}
- name: Compile Kotlin
run: ./gradlew compileKotlin ${{ env.gradleArgs }}
- name: Assemble
if: ${{ matrix.assemble }}
run: ./gradlew assemble ${{ env.gradleArgs }}
- if: ${{ matrix.uploadApk }}
name: Build Android Debug APK
run: ./gradlew assembleDebug ${{ env.gradleArgs }}
- if: ${{ matrix.uploadApk }}
name: Upload Android Debug APK
uses: actions/upload-artifact@v4
with:
name: ani-android-debug
path: app/android/build/outputs/apk/debug/android-debug.apk
- if: ${{ matrix.uploadApk && env.doSigning == 'true' }}
name: Build Android Release APK
run: ./gradlew assembleRelease ${{ env.gradleArgs }}
env:
"signing_release_storeFileFromRoot": ${{ steps.android_signing_key.outputs.filePath }}
"signing_release_storePassword": ${{ secrets.SIGNING_RELEASE_STOREPASSWORD }}
"signing_release_keyAlias": ${{ secrets.SIGNING_RELEASE_KEYALIAS }}
"signing_release_keyPassword": ${{ secrets.SIGNING_RELEASE_KEYPASSWORD }}
- if: ${{ matrix.uploadApk }}
name: Upload Android Release APK arm64-v8a
uses: actions/upload-artifact@v4
with:
name: ani-android-arm64-v8a-release
path: app/android/build/outputs/apk/release/android-arm64-v8a-release.apk
- if: ${{ matrix.uploadApk }}
name: Upload Android Release APK armeabi-v7a
uses: actions/upload-artifact@v4
with:
name: ani-android-armeabi-v7a-release
path: app/android/build/outputs/apk/release/android-armeabi-v7a-release.apk
- if: ${{ matrix.uploadApk }}
name: Upload Android Release APK x86_64
uses: actions/upload-artifact@v4
with:
name: ani-android-x86_64-release
path: app/android/build/outputs/apk/release/android-x86_64-release.apk
- if: ${{ matrix.uploadApk }}
name: Upload Android Release APK universal
uses: actions/upload-artifact@v4
with:
name: ani-android-universal-release
path: app/android/build/outputs/apk/release/android-universal-release.apk
- name: Check
if: ${{ matrix.run_tests }}
uses: nick-fields/retry@v2
with:
max_attempts: 2
timeout_minutes: 60
command: ./gradlew check ${{ env.gradleArgs }}
- if: ${{ matrix.anitorrent }}
name: Upload Anitorrent CMakeCache.txt
uses: actions/upload-artifact@v4
with:
name: anitorrent-cmake-cache-${{ matrix.os }}-${{ matrix.arch }}
path: torrent/anitorrent/build-ci/CMakeCache.txt
- if: ${{ matrix.anitorrent }}
name: Upload Anitorrent ${{ matrix.compose_resource_triple }}
uses: actions/upload-artifact@v4
with:
name: anitorrent-${{ matrix.compose_resource_triple }}
path: app/desktop/appResources/${{ matrix.compose_resource_triple }}/anitorrent
- name: Package Desktop
if: ${{ matrix.uploadDesktopInstallers }}
run: ./gradlew packageReleaseDistributionForCurrentOS ${{ env.gradleArgs }}
id: packageReleaseDistributionForCurrentOS
# 只在打包错误时上传日志
- if: always() # steps.packageReleaseDistributionForCurrentOS.conclusion == 'failure'
name: Upload compose logs
uses: actions/upload-artifact@v4
with:
name: compose-logs-${{ matrix.os }}-${{ matrix.arch }}
path: app/desktop/build/compose/logs
- if: ${{ env.isMac == 'true' }}
name: Upload macOS app
uses: actions/upload-artifact@v4
with:
name: ani-macos-portable-${{ matrix.arch }}
path: app/desktop/build/compose/binaries/main-release/app/Ani.app
- if: ${{ env.isMac == 'true' && matrix.arch != 'x64' }}
name: Upload macOS dmg
uses: actions/upload-artifact@v4
with:
name: ani-macos-dmg-${{ matrix.arch }}
path: app/desktop/build/compose/binaries/main-release/dmg/Ani-*.dmg
- if: ${{ env.isWindows == 'true' }}
name: Upload Windows packages
uses: actions/upload-artifact@v4
with:
name: ani-windows-portable
path: app/desktop/build/compose/binaries/main-release/app