-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
410 lines (363 loc) · 16.9 KB
/
Copy pathcd.yml
File metadata and controls
410 lines (363 loc) · 16.9 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
name: CD For SiYuan
on:
push:
tags:
- '*-alpha*'
- '*-beta*'
- '*-rc*'
workflow_dispatch:
# ref https://docs.github.com/zh/actions/learn-github-actions/variables
env:
package_json: "app/package.json"
jobs:
prepare:
name: Prepare
runs-on: ubuntu-latest
outputs:
release_title: ${{ steps.release_info.outputs.release_title }}
version: ${{ steps.version.outputs.value }}
packageManager: ${{ steps.packageManager.outputs.value }}
release_body: ${{ steps.release_info.outputs.release_body }}
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- run: pip install PyGithub
- id: thisLatestRelease
run: |
LATEST=$(gh api "repos/${{ github.repository }}/releases/latest" --jq '.tag_name' 2>/dev/null || echo "")
echo "release=$LATEST" >> $GITHUB_OUTPUT
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Extract version from package.json
id: version
run: |
echo "value=$(jq .version ${{ env.package_json }} -r)" >> $GITHUB_OUTPUT
- name: Extract electronVersion from package.json
id: electronVersion
run: |
echo "value=$(jq .devDependencies.electron ${{ env.package_json }} -r)" >> $GITHUB_OUTPUT
- name: Extract packageManager from package.json
id: packageManager
run: |
echo "value=$(jq .packageManager ${{ env.package_json }} -r)" >> $GITHUB_OUTPUT
- name: Gather Release Information
id: release_info
run: |
echo "release_title=SiYuan v${{ steps.version.outputs.value }}" >> $GITHUB_OUTPUT
changelog_header=$(python scripts/parse-changelog-HEAD.py -t ${{ github.ref }} -b ${{ steps.thisLatestRelease.outputs.release }} -e ${{ steps.electronVersion.outputs.value }} ${{ github.repository }})
changelog=$(python scripts/parse-changelog.py -t ${{ github.ref }} ${{ github.repository }})
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
echo "release_body<<$EOF" >> $GITHUB_OUTPUT
echo "$changelog_header" >> $GITHUB_OUTPUT
echo "$changelog" >> $GITHUB_OUTPUT
echo "$EOF" >> $GITHUB_OUTPUT
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build:
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.name }}
needs: [prepare]
strategy:
matrix:
config:
- os: ubuntu-24.04
name: ubuntu build linux
kernel_path: "../app/kernel-linux/SiYuan-Kernel"
build_args_prefix: "-s -w -X"
build_args_suffix: "Mode=prod"
electron_args: "dist-linux"
goos: "linux"
goarch: "amd64"
suffix: "linux"
- os: macos-latest
name: macos build mac.dmg
kernel_path: "../app/kernel-darwin/SiYuan-Kernel"
build_args_prefix: "-s -w -X"
build_args_suffix: "Mode=prod"
electron_args: "dist-darwin"
goos: "darwin"
goarch: "amd64"
suffix: "mac.dmg"
- os: macos-latest
name: macos build mac-arm64.dmg
kernel_path: "../app/kernel-darwin-arm64/SiYuan-Kernel"
build_args_prefix: "-s -w -X"
build_args_suffix: "Mode=prod"
electron_args: "dist-darwin-arm64"
goos: "darwin"
goarch: "arm64"
suffix: "mac-arm64.dmg"
- os: windows-latest
name: windows build win.exe
kernel_path: "../app/kernel/SiYuan-Kernel.exe"
build_args_prefix: "-s -w -X"
build_args_suffix: "Mode=prod"
electron_args: "dist"
goos: "windows"
gobin: "bin"
mingwsys: "MINGW64"
goarch: "amd64"
suffix: "win.exe"
steps:
- uses: actions/checkout@v6
with:
path: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}
- name: Set up MingGW
uses: msys2/setup-msys2@v2
if: "contains( matrix.config.goos, 'windows')"
with:
install: p7zip mingw-w64-x86_64-lua
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/kernel/go.mod
cache-dependency-path: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/kernel/go.sum
cache: true
- run: go version
- name: Set up goversioninfo
run: go get github.com/josephspurrier/goversioninfo/cmd/goversioninfo && go install github.com/josephspurrier/goversioninfo/cmd/goversioninfo
if: "contains( matrix.config.goos, 'windows')"
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/kernel
env:
GO111MODULE: on
CGO_ENABLED: 1
GOOS: ${{ matrix.config.goos }}
GOPATH: ${{ github.workspace }}/go
GOARCH: ${{ matrix.config.goarch }}
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install Node pnpm
run: npm install -g ${{ needs.prepare.outputs.packageManager }}
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app
- name: Cache pnpm store
uses: actions/cache@v5
with:
path: ~/.pnpm-store
key: pnpm-${{ runner.os }}-${{ hashFiles('app/pnpm-lock.yaml') }}
restore-keys: pnpm-${{ runner.os }}-
- name: Install Node Dependencies
run: pnpm install --no-frozen-lockfile
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app
- name: Install Electron Binary
run: pnpm run install:electron
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app
- name: Building UI
run: pnpm run build
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app
- name: Clean Build and Kernel Directories
run: |
rm -rf "${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app/build"
rm -rf "${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app/kernel"*
shell: bash
- name: Generate Icon Resource and Properties/Version Info For Windows
run: ${{ github.workspace }}\go\${{ matrix.config.gobin }}\goversioninfo -platform-specific=true -icon="resource\icon.ico" -manifest="resource\goversioninfo.exe.manifest"
if: "contains( matrix.config.goos, 'windows')"
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/kernel
- name: Building Kernel
run: go build -tags fts5 -o "${{ matrix.config.kernel_path }}" -ldflags "${{ matrix.config.build_args_prefix }} github.com/${{ github.repository }}/kernel/util.${{ matrix.config.build_args_suffix }}"
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/kernel
env:
GO111MODULE: on
CGO_ENABLED: 1
GOOS: ${{ matrix.config.goos }}
GOPATH: ${{ github.workspace }}/go
GOARCH: ${{ matrix.config.goarch }}
- name: Install RPM build tools
if: matrix.config.goos == 'linux'
run: sudo apt-get install -y rpm
- name: Building Electron App
run: pnpm run ${{ matrix.config.electron_args }}
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app
- name: Upload Build Artifacts (Non-Linux)
if: matrix.config.goos != 'linux'
uses: actions/upload-artifact@v7
with:
name: siyuan-${{ matrix.config.suffix }}
path: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app/build/siyuan-*-${{ matrix.config.suffix }}
- name: Upload Build Artifacts (Linux)
if: matrix.config.goos == 'linux'
uses: actions/upload-artifact@v7
with:
name: siyuan-linux
path: |
${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app/build/siyuan-*-linux.AppImage
${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app/build/siyuan-*-linux.tar.gz
${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app/build/siyuan-*-linux.deb
${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app/build/siyuan-*-linux.rpm
build_android:
runs-on: ubuntu-latest
name: ubuntu build android.apk
# Android and desktop builds run in parallel, both depend on prepare.
# create_release aggregates all artifacts once both jobs succeed.
needs: prepare
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
path: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/kernel/go.mod
cache-dependency-path: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/kernel/go.sum
cache: true
- run: go version
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install Node pnpm
run: npm install -g ${{ needs.prepare.outputs.packageManager }}
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app
- name: Cache pnpm store
uses: actions/cache@v5
with:
path: ~/.pnpm-store
key: pnpm-${{ runner.os }}-${{ hashFiles('app/pnpm-lock.yaml') }}
restore-keys: pnpm-${{ runner.os }}-
- name: Install Node Dependencies
run: pnpm install --no-frozen-lockfile
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app
- name: Building UI
run: pnpm run build
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app
- name: Set up JDK
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: "21"
- name: Set up Android NDK
# 锁定 NDK r28b(与本地开发环境同版本)。sdkmanager 不在 PATH 上
# (actions/runner-images#13674),用全路径调用;同时预接受 SDK 许可,
# 避免 NDK 安装卡在交互式许可确认。
run: |
SDKMANAGER="$ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager"
if [ ! -x "$SDKMANAGER" ]; then
SDKMANAGER=$(ls "$ANDROID_HOME"/cmdline-tools/*/bin/sdkmanager 2>/dev/null | head -1)
fi
if [ -z "$SDKMANAGER" ]; then
echo "ERROR: sdkmanager not found under $ANDROID_HOME/cmdline-tools/"
exit 1
fi
echo "Using sdkmanager: $SDKMANAGER"
yes | "$SDKMANAGER" --licenses > /dev/null 2>&1 || true
"$SDKMANAGER" "ndk;28.2.13676358" > /dev/null
NDK_DIR="$ANDROID_HOME/ndk/28.2.13676358"
echo "ANDROID_NDK_HOME=$NDK_DIR" >> $GITHUB_ENV
echo "ANDROID_NDK_ROOT=$NDK_DIR" >> $GITHUB_ENV
echo "Installed NDK r28b at $NDK_DIR"
- name: Set up gomobile
# 锁定到 kernel/go.mod 中 x/mobile 模块的同一版本,避免工具与库版本漂移。
# GOPATH 被显式指向 workspace 下,go install 的产物在 $GOPATH/bin,
# 该目录不在默认 PATH 上,需用全路径调用并写入 $GITHUB_PATH 供后续步骤使用。
run: |
go install golang.org/x/mobile/cmd/gomobile@2553ed8ce294
echo "$GOPATH/bin" >> $GITHUB_PATH
"$GOPATH/bin/gomobile" init
env:
GOPATH: ${{ github.workspace }}/go
- name: Building Android Kernel
run: gomobile bind -tags fts5 -ldflags "-s -w" -v -o kernel.aar -target android/arm64 -androidapi 26 ./mobile/
working-directory: ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/kernel
env:
GOPATH: ${{ github.workspace }}/go
CGO_ENABLED: 1
JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8
- name: Checkout siyuan-android
uses: actions/checkout@v6
with:
repository: siyuan-note/siyuan-android
ref: main
path: ${{ github.workspace }}/siyuan-android
- name: Patch siyuan-android Repositories
# siyuan-android 默认把阿里云镜像排在最前,某些依赖(如 org.apache:apache:31)
# 在阿里云镜像缺失会导致解析失败。CI 在海外,直接走 google()/mavenCentral()
# 更稳;sed 删除所有 maven.aliyun.com 行,保留官方仓库。
run: |
sed -i '/maven.aliyun.com/d' build.gradle
echo "=== Patched build.gradle repositories ==="
grep -A 6 "repositories" build.gradle | head -20
working-directory: ${{ github.workspace }}/siyuan-android
- name: Prepare siyuan-android Build Inputs
run: |
mkdir -p ${{ github.workspace }}/siyuan-android/app/libs
cp ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/kernel/kernel.aar \
${{ github.workspace }}/siyuan-android/app/libs/kernel.aar
cd ${{ github.workspace }}/go/src/github.com/${{ github.repository }}/app
zip -r app.zip appearance guide stage changelogs
mkdir -p ${{ github.workspace }}/siyuan-android/app/src/main/assets
cp app.zip ${{ github.workspace }}/siyuan-android/app/src/main/assets/app.zip
- name: Inject Signing Config
run: |
echo "$ANDROID_KEYSTORE_BASE64" | base64 -d > ${{ github.workspace }}/siyuan-android/app/siyuan-android.jks
cat > ${{ github.workspace }}/siyuan-android/signings.gradle <<EOF
android {
signingConfigs {
siyuanConfig {
storeFile file("siyuan-android.jks")
storePassword "$ANDROID_KEYSTORE_PASSWORD"
keyAlias "$ANDROID_KEY_ALIAS"
keyPassword "$ANDROID_KEY_PASSWORD"
}
}
}
EOF
env:
ANDROID_KEYSTORE_BASE64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }}
ANDROID_KEYSTORE_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }}
ANDROID_KEY_ALIAS: ${{ secrets.ANDROID_KEY_ALIAS }}
ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEY_PASSWORD }}
- name: Building Android App
# local.properties 被 siyuan-android 的 .gitignore 忽略,CI 里需现场生成,
# 否则 Gradle 报 "SDK location not found";gradlew 也需显式加可执行权限。
# 产物重命名为带版本号的固定名,确保下载文件名正确(GitHub Release 的下载名
# 取决于上传时的本地文件名,# 语法只改显示标签)。
run: |
echo "sdk.dir=$ANDROID_HOME" > local.properties
chmod +x ./gradlew
./gradlew assembleOfficialRelease
cd app/build/outputs/apk/official/release
mv siyuan-*-official-release.apk siyuan-${{ needs.prepare.outputs.version }}.apk
working-directory: ${{ github.workspace }}/siyuan-android
- name: Upload Build Artifacts
uses: actions/upload-artifact@v7
with:
name: siyuan-android
path: ${{ github.workspace }}/siyuan-android/app/build/outputs/apk/official/release/siyuan-${{ needs.prepare.outputs.version }}.apk
create_release:
name: Create Release
runs-on: ubuntu-latest
needs: [prepare, build, build_android]
steps:
- name: Download all artifacts
uses: actions/download-artifact@v8
- name: Create Release
uses: ncipollo/release-action@v1
with:
name: ${{ needs.prepare.outputs.release_title }}
tag: ${{ github.ref }}
body: ${{ needs.prepare.outputs.release_body }}
draft: false
prerelease: true
token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Release Assets
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
run: |
VERSION=${{ needs.prepare.outputs.version }}
gh release upload ${{ github.ref_name }} \
"siyuan-linux/siyuan-${VERSION}-linux.AppImage#siyuan-${VERSION}-linux.AppImage" \
"siyuan-linux/siyuan-${VERSION}-linux.tar.gz#siyuan-${VERSION}-linux.tar.gz" \
"siyuan-linux/siyuan-${VERSION}-linux.deb#siyuan-${VERSION}-linux.deb" \
"siyuan-linux/siyuan-${VERSION}-linux.rpm#siyuan-${VERSION}-linux.rpm" \
"siyuan-mac.dmg/siyuan-${VERSION}-mac.dmg#siyuan-${VERSION}-mac.dmg" \
"siyuan-mac-arm64.dmg/siyuan-${VERSION}-mac-arm64.dmg#siyuan-${VERSION}-mac-arm64.dmg" \
"siyuan-win.exe/siyuan-${VERSION}-win.exe#siyuan-${VERSION}-win.exe" \
"siyuan-android/siyuan-${VERSION}.apk#siyuan-${VERSION}.apk"