-
Notifications
You must be signed in to change notification settings - Fork 0
397 lines (340 loc) · 14.4 KB
/
build.yml
File metadata and controls
397 lines (340 loc) · 14.4 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
name: Build DualQuickIME
on:
push:
branches: [main, master]
tags:
- 'v*'
pull_request:
branches: [main, master]
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Download sherpa-onnx AAR
run: |
mkdir -p app/libs
curl -L -o app/libs/sherpa-onnx-1.12.34.aar \
"https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.12.34/sherpa-onnx-1.12.34.aar"
ls -la app/libs/
- name: Clean Gradle caches
run: |
rm -rf ~/.gradle/caches/modules-2/files-2.1/
rm -rf ~/.gradle/caches/transforms-*/
rm -rf ~/.gradle/kotlin-profile/
rm -rf .gradle/
- name: Clean and Build Debug APKs (all flavors)
run: ./gradlew clean assembleDebug --no-build-cache --no-daemon --no-configuration-cache
- name: Upload Full Debug APKs (arm64-v8a)
uses: actions/upload-artifact@v4
with:
name: app-full-debug-arm64-v8a
path: app/build/outputs/apk/full/debug/app-full-arm64-v8a-debug.apk
- name: Upload Full Debug APKs (armeabi-v7a)
uses: actions/upload-artifact@v4
with:
name: app-full-debug-armeabi-v7a
path: app/build/outputs/apk/full/debug/app-full-armeabi-v7a-debug.apk
- name: Upload Full Debug APKs (universal)
uses: actions/upload-artifact@v4
with:
name: app-full-debug-universal
path: app/build/outputs/apk/full/debug/app-full-universal-debug.apk
- name: Upload Lite Debug APKs (arm64-v8a)
uses: actions/upload-artifact@v4
with:
name: app-lite-debug-arm64-v8a
path: app/build/outputs/apk/lite/debug/app-lite-arm64-v8a-debug.apk
- name: Upload Lite Debug APKs (armeabi-v7a)
uses: actions/upload-artifact@v4
with:
name: app-lite-debug-armeabi-v7a
path: app/build/outputs/apk/lite/debug/app-lite-armeabi-v7a-debug.apk
- name: Upload Lite Debug APKs (universal)
uses: actions/upload-artifact@v4
with:
name: app-lite-debug-universal
path: app/build/outputs/apk/lite/debug/app-lite-universal-debug.apk
# Signed Release Build (only if secrets are configured)
- name: Decode Keystore
if: ${{ env.KEYSTORE_BASE64 != '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
run: |
echo "$KEYSTORE_BASE64" | base64 -d > ${{ github.workspace }}/release.jks
- name: Create keystore.properties
if: ${{ env.KEYSTORE_BASE64 != '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
run: |
cat > keystore.properties << EOF
storeFile=${{ github.workspace }}/release.jks
storePassword=$KEYSTORE_PASSWORD
keyAlias=$KEY_ALIAS
keyPassword=$KEY_PASSWORD
EOF
- name: Build Signed Release APK
if: ${{ env.KEYSTORE_BASE64 != '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
run: ./gradlew assembleRelease --no-build-cache --no-daemon --no-configuration-cache
- name: Upload Full Release APK (arm64-v8a)
if: ${{ env.KEYSTORE_BASE64 != '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
uses: actions/upload-artifact@v4
with:
name: app-full-release-arm64-v8a
path: app/build/outputs/apk/full/release/app-full-arm64-v8a-release.apk
- name: Upload Full Release APK (armeabi-v7a)
if: ${{ env.KEYSTORE_BASE64 != '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
uses: actions/upload-artifact@v4
with:
name: app-full-release-armeabi-v7a
path: app/build/outputs/apk/full/release/app-full-armeabi-v7a-release.apk
- name: Upload Full Release APK (universal)
if: ${{ env.KEYSTORE_BASE64 != '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
uses: actions/upload-artifact@v4
with:
name: app-full-release-universal
path: app/build/outputs/apk/full/release/app-full-universal-release.apk
- name: Upload Lite Release APK (arm64-v8a)
if: ${{ env.KEYSTORE_BASE64 != '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
uses: actions/upload-artifact@v4
with:
name: app-lite-release-arm64-v8a
path: app/build/outputs/apk/lite/release/app-lite-arm64-v8a-release.apk
- name: Upload Lite Release APK (armeabi-v7a)
if: ${{ env.KEYSTORE_BASE64 != '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
uses: actions/upload-artifact@v4
with:
name: app-lite-release-armeabi-v7a
path: app/build/outputs/apk/lite/release/app-lite-armeabi-v7a-release.apk
- name: Upload Lite Release APK (universal)
if: ${{ env.KEYSTORE_BASE64 != '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
uses: actions/upload-artifact@v4
with:
name: app-lite-release-universal
path: app/build/outputs/apk/lite/release/app-lite-universal-release.apk
# Unsigned Release Build (fallback if no secrets)
- name: Build Unsigned Release APK
if: ${{ env.KEYSTORE_BASE64 == '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
run: ./gradlew assembleRelease --no-build-cache --no-daemon --no-configuration-cache
- name: Upload Full Release APK unsigned (arm64-v8a)
if: ${{ env.KEYSTORE_BASE64 == '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
uses: actions/upload-artifact@v4
with:
name: app-full-release-unsigned-arm64-v8a
path: app/build/outputs/apk/full/release/app-full-arm64-v8a-release-unsigned.apk
- name: Upload Full Release APK unsigned (armeabi-v7a)
if: ${{ env.KEYSTORE_BASE64 == '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
uses: actions/upload-artifact@v4
with:
name: app-full-release-unsigned-armeabi-v7a
path: app/build/outputs/apk/full/release/app-full-armeabi-v7a-release-unsigned.apk
- name: Upload Full Release APK unsigned (universal)
if: ${{ env.KEYSTORE_BASE64 == '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
uses: actions/upload-artifact@v4
with:
name: app-full-release-unsigned-universal
path: app/build/outputs/apk/full/release/app-full-universal-release-unsigned.apk
- name: Upload Lite Release APK unsigned (arm64-v8a)
if: ${{ env.KEYSTORE_BASE64 == '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
uses: actions/upload-artifact@v4
with:
name: app-lite-release-unsigned-arm64-v8a
path: app/build/outputs/apk/lite/release/app-lite-arm64-v8a-release-unsigned.apk
- name: Upload Lite Release APK unsigned (armeabi-v7a)
if: ${{ env.KEYSTORE_BASE64 == '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
uses: actions/upload-artifact@v4
with:
name: app-lite-release-unsigned-armeabi-v7a
path: app/build/outputs/apk/lite/release/app-lite-armeabi-v7a-release-unsigned.apk
- name: Upload Lite Release APK unsigned (universal)
if: ${{ env.KEYSTORE_BASE64 == '' }}
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
uses: actions/upload-artifact@v4
with:
name: app-lite-release-unsigned-universal
path: app/build/outputs/apk/lite/release/app-lite-universal-release-unsigned.apk
# Create GitHub Release (only on version tags)
- name: Rename APKs for release
if: startsWith(github.ref, 'refs/tags/v') && env.KEYSTORE_BASE64 != ''
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
run: |
VERSION=${GITHUB_REF#refs/tags/}
mkdir -p app/build/outputs/apk/release-renamed
# Process full flavor APKs
cd app/build/outputs/apk/full/release
for apk in app-*.apk; do
# Extract ABI from filename (e.g., app-full-arm64-v8a-release.apk -> arm64-v8a)
ABI=$(echo "$apk" | sed -E 's/app-full-(.+)-release\.apk/\1/')
if [ "$ABI" = "universal" ]; then
cp "$apk" "../../release-renamed/DualQuickIME-${VERSION}-universal.apk"
else
cp "$apk" "../../release-renamed/DualQuickIME-${VERSION}-${ABI}.apk"
fi
done
cd -
# Process lite flavor APKs
cd app/build/outputs/apk/lite/release
for apk in app-*.apk; do
# Extract ABI from filename (e.g., app-lite-arm64-v8a-release.apk -> arm64-v8a)
ABI=$(echo "$apk" | sed -E 's/app-lite-(.+)-release\.apk/\1/')
if [ "$ABI" = "universal" ]; then
cp "$apk" "../../release-renamed/DualQuickIME-${VERSION}-lite-universal.apk"
else
cp "$apk" "../../release-renamed/DualQuickIME-${VERSION}-lite-${ABI}.apk"
fi
done
cd -
ls -la app/build/outputs/apk/release-renamed/
- name: Generate Changelog from Conventional Commits
if: startsWith(github.ref, 'refs/tags/v') && env.KEYSTORE_BASE64 != ''
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
run: |
VERSION=${GITHUB_REF#refs/tags/}
# Get previous tag for changelog range
PREV_TAG=$(git describe --tags --abbrev=0 HEAD^ 2>/dev/null || echo "")
if [ -z "$PREV_TAG" ]; then
# First release - get all commits
COMMIT_RANGE="HEAD"
else
COMMIT_RANGE="${PREV_TAG}..HEAD"
fi
# Generate changelog from conventional commits
echo "## What's Changed" > CHANGELOG_RELEASE.md
echo "" >> CHANGELOG_RELEASE.md
# Features
FEATURES=$(git log $COMMIT_RANGE --pretty=format:"%s" | grep -E "^feat(\(.+\))?:" | sed 's/^feat\(.*\):/- ✨/' || true)
if [ -n "$FEATURES" ]; then
echo "### ✨ Features" >> CHANGELOG_RELEASE.md
echo "$FEATURES" >> CHANGELOG_RELEASE.md
echo "" >> CHANGELOG_RELEASE.md
fi
# Bug Fixes
FIXES=$(git log $COMMIT_RANGE --pretty=format:"%s" | grep -E "^fix(\(.+\))?:" | sed 's/^fix\(.*\):/- 🐛/' || true)
if [ -n "$FIXES" ]; then
echo "### 🐛 Bug Fixes" >> CHANGELOG_RELEASE.md
echo "$FIXES" >> CHANGELOG_RELEASE.md
echo "" >> CHANGELOG_RELEASE.md
fi
# Refactoring
REFACTORS=$(git log $COMMIT_RANGE --pretty=format:"%s" | grep -E "^refactor(\(.+\))?:" | sed 's/^refactor\(.*\):/- ♻️/' || true)
if [ -n "$REFACTORS" ]; then
echo "### ♻️ Refactoring" >> CHANGELOG_RELEASE.md
echo "$REFACTORS" >> CHANGELOG_RELEASE.md
echo "" >> CHANGELOG_RELEASE.md
fi
# Documentation
DOCS=$(git log $COMMIT_RANGE --pretty=format:"%s" | grep -E "^docs(\(.+\))?:" | sed 's/^docs\(.*\):/- 📚/' || true)
if [ -n "$DOCS" ]; then
echo "### 📚 Documentation" >> CHANGELOG_RELEASE.md
echo "$DOCS" >> CHANGELOG_RELEASE.md
echo "" >> CHANGELOG_RELEASE.md
fi
# Chores
CHORES=$(git log $COMMIT_RANGE --pretty=format:"%s" | grep -E "^chore(\(.+\))?:" | sed 's/^chore\(.*\):/- 🔧/' || true)
if [ -n "$CHORES" ]; then
echo "### 🔧 Chores" >> CHANGELOG_RELEASE.md
echo "$CHORES" >> CHANGELOG_RELEASE.md
echo "" >> CHANGELOG_RELEASE.md
fi
# Add compare link if previous tag exists
if [ -n "$PREV_TAG" ]; then
echo "**Full Changelog**: https://github.com/${{ github.repository }}/compare/${PREV_TAG}...${VERSION}" >> CHANGELOG_RELEASE.md
fi
cat CHANGELOG_RELEASE.md
- name: Create GitHub Release
if: startsWith(github.ref, 'refs/tags/v') && env.KEYSTORE_BASE64 != ''
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
VERSION=${GITHUB_REF#refs/tags/}
# Upload all flavors and ABI APKs to the release
gh release create "$VERSION" \
--title "DualQuickIME $VERSION" \
--notes-file CHANGELOG_RELEASE.md \
app/build/outputs/apk/release-renamed/DualQuickIME-${VERSION}-*.apk
# Cleanup sensitive files
- name: Cleanup keystore
if: always()
run: |
rm -f ${{ github.workspace }}/release.jks
rm -f keystore.properties
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Download sherpa-onnx AAR
run: |
mkdir -p app/libs
curl -L -o app/libs/sherpa-onnx-1.12.34.aar \
"https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.12.34/sherpa-onnx-1.12.34.aar"
ls -la app/libs/
- name: Clean Gradle caches
run: |
rm -rf ~/.gradle/caches/modules-2/files-2.1/
rm -rf ~/.gradle/caches/transforms-*/
rm -rf ~/.gradle/kotlin-profile/
rm -rf .gradle/
- name: Clean and run unit tests
run: ./gradlew clean test --no-build-cache --no-daemon --no-configuration-cache
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: app/build/reports/tests/