-
Notifications
You must be signed in to change notification settings - Fork 523
485 lines (416 loc) · 13.9 KB
/
build.yml
File metadata and controls
485 lines (416 loc) · 13.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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
name: build
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
ios:
runs-on: macos-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Get Third-Party Cache
id: third-party-cache
uses: actions/cache/restore@v4
with:
path: |
third_party
key: third-party-ios-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
restore-keys: third-party-ios-
- uses: tecolicom/actions-use-homebrew-tools@v1
with:
tools: ninja yasm
- name: Install Build Tools
run: |
chmod +x install_tools.sh
./install_tools.sh
shell: bash
- name: Run depsync
run: |
npm install depsync -g
depsync
shell: bash
- name: Build iOS
run: |
mkdir -p third_party/tgfx/out/cache
cd ios
node gen_ios
xcodebuild -workspace PAGViewer.xcworkspace -scheme PAGViewer -configuration Release -sdk iphoneos -arch arm64 CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
- name: Save Third-Party Cache
if: ${{ (github.event_name == 'push') && (steps.third-party-cache.outputs.cache-hit != 'true') }}
uses: actions/cache/save@v4
with:
path: |
third_party
key: third-party-ios-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
- name: Job Failed
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ios_build
path: ios
android:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Get Third-Party Cache
id: third-party-cache
uses: actions/cache/restore@v4
with:
path: |
third_party
key: third-party-android-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
restore-keys: third-party-android-
- name: Run depsync
run: |
npm install depsync -g
depsync
- uses: seanmiddleditch/gha-setup-ninja@master
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Build Android
run: |
mkdir -p third_party/tgfx/out/cache
cd android
./gradlew assembleRelease -Parm64-only --no-daemon
- name: Save Third-Party Cache
if: ${{ (github.event_name == 'push') && (steps.third-party-cache.outputs.cache-hit != 'true') }}
uses: actions/cache/save@v4
with:
path: |
third_party
key: third-party-android-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
- name: Job Failed
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: android_build
path: android
web:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Get emsdk Cache
id: emsdk-cache
uses: actions/cache/restore@v4
with:
path: web/emsdk
key: emsdk-web-linux-20251212
restore-keys: emsdk-web-linux-
- name: Get node_modules Cache
id: node-cache
uses: actions/cache/restore@v4
with:
path: |
web/node_modules
web/package-lock.json
key: node-modules-web-linux-${{ hashFiles('web/package.json') }}
restore-keys: node-modules-web-linux-
- name: Get Third-Party Cache
id: third-party-cache
uses: actions/cache/restore@v4
with:
path: |
third_party
key: third-party-web-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
restore-keys: third-party-web-
- name: Install emsdk
if: ${{ (steps.emsdk-cache.outputs.cache-hit != 'true') }}
run: |
cd web
if [ ! -d "emsdk" ]; then
git clone https://github.com/emscripten-core/emsdk.git
else
cd emsdk
git pull
cd ..
fi
cd emsdk
./emsdk install 3.1.71
./emsdk activate 3.1.71
- name: Install node_modules
if: ${{ (steps.node-cache.outputs.cache-hit != 'true') }}
run: |
cd web
npm install
- name: Run depsync
run: |
npm install depsync -g
depsync
- name: Build Web
run: |
cd web
source emsdk/emsdk_env.sh
npm run build:st
- name: Cypress run:st
uses: cypress-io/github-action@v6
with:
working-directory: web
start: npm run server:cypress
wait-on: 'http://localhost:8080'
command: npm run cypress
- name: Save emsdk Cache
if: ${{ (github.event_name == 'push') && (steps.emsdk-cache.outputs.cache-hit != 'true') }}
uses: actions/cache/save@v4
with:
path: web/emsdk
key: emsdk-web-linux-20251212
- name: Save node_modules Cache
if: ${{ (github.event_name == 'push') && (steps.node-cache.outputs.cache-hit != 'true') }}
uses: actions/cache/save@v4
with:
path: |
web/node_modules
web/package-lock.json
key: node-modules-web-linux-${{ hashFiles('web/package.json') }}
- name: Save Third-Party Cache
if: ${{ (github.event_name == 'push') && (steps.third-party-cache.outputs.cache-hit != 'true') }}
uses: actions/cache/save@v4
with:
path: |
third_party
key: third-party-web-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
- name: Job Failed
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: web_build
path: |
web
!web/emsdk
!web/node_modules
win:
runs-on: windows-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Get Third-Party Cache
id: third-party-cache
uses: actions/cache/restore@v4
with:
path: |
third_party
key: third-party-windows-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
restore-keys: third-party-windows-
- name: Run depsync
run: |
npm install depsync -g
depsync
shell: bash
- name: Build Windows
run: |
New-Item -ItemType Directory -Force -Path third_party/tgfx/out/cache
node third_party/vendor_tools/ms-build -a x64 win/Win32Demo.sln
- name: Save Third-Party Cache
if: ${{ (github.event_name == 'push') && (steps.third-party-cache.outputs.cache-hit != 'true') }}
uses: actions/cache/save@v4
with:
path: |
third_party
key: third-party-windows-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
- name: Job Failed
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: win_build
path: out
linux:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Get Third-Party Cache
id: third-party-cache
uses: actions/cache/restore@v4
with:
path: |
third_party
key: third-party-linux-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
restore-keys: third-party-linux-
- uses: seanmiddleditch/gha-setup-ninja@master
- name: Run depsync
run: |
npm install depsync -g
depsync
shell: bash
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libx11-dev
version: 1.0
- name: Build Linux
run: |
mkdir -p third_party/tgfx/out/cache
cd linux
./build_pag.sh
cmake -B ./build -DCMAKE_BUILD_TYPE=Release
cmake --build ./build -- -j 12
- name: Save Third-Party Cache
if: ${{ (github.event_name == 'push') && (steps.third-party-cache.outputs.cache-hit != 'true') }}
uses: actions/cache/save@v4
with:
path: |
third_party
key: third-party-linux-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
- name: Job Failed
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: linux_build
path: linux
qt:
runs-on: macos-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Get Third-Party Cache
id: third-party-cache
uses: actions/cache/restore@v4
with:
path: |
third_party
key: third-party-qt-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
restore-keys: third-party-qt-
- uses: seanmiddleditch/gha-setup-ninja@master
- name: Run depsync
run: |
npm install depsync -g
depsync
shell: bash
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
host: 'mac'
target: 'desktop'
version: '6.8.3'
dir: '${{github.workspace}}/qt/'
install-deps: 'true'
aqtversion: '==3.2.1'
cache: 'true'
cache-key-prefix: 'install-qt-action'
modules: 'qtmultimedia'
- name: Setup ccache
run: |
brew install ccache
- name: Restore ccache
id: ccache-restore
uses: actions/cache/restore@v4
with:
path: ~/Library/Caches/ccache
key: ccache-qt-${{ runner.os }}-main
restore-keys: |
ccache-qt-${{ runner.os }}-
- name: Configure ccache
run: |
ccache --set-config=max_size=2G
ccache --set-config=base_dir=${{ github.workspace }}
ccache --set-config=hash_dir=false
ccache --zero-stats
- name: Build QT
run: |
mkdir -p third_party/tgfx/out/cache
export PATH="/opt/homebrew/opt/ccache/libexec:$PATH"
node build_pag -i -s ./viewer PAGViewer -DCMAKE_PREFIX_PATH="${{env.QT_ROOT_DIR}}/lib/cmake" -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -o ./out/release/viewer -a x64
ccache --show-stats
- name: Save ccache
if: ${{ (github.event_name == 'push') && (steps.ccache-restore.outputs.cache-hit != 'true') }}
uses: actions/cache/save@v4
with:
path: ~/Library/Caches/ccache
key: ccache-qt-${{ runner.os }}-main
- name: Save Third-Party Cache
if: ${{ (github.event_name == 'push') && (steps.third-party-cache.outputs.cache-hit != 'true') }}
uses: actions/cache/save@v4
with:
path: |
third_party
key: third-party-qt-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
- name: Job Failed
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: qt_build
path: out
ohos:
runs-on: macos-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Get CLI Tools Cache
id: cli-tools-cache
uses: actions/cache@v4
with:
path: ~/ohos-cmd-tools
key: ohos-cli-6.0.0.868-mac-arm64-v2
restore-keys: ohos-cli-
- name: Install CLI Tools
if: steps.cli-tools-cache.outputs.cache-hit != 'true'
run: |
TOOLS_URL="https://github.com/libpag/ohos-sdk/releases/download/6.0.0.868/commandline-tools-mac-arm64-6.0.0.868.zip"
curl -L -o /tmp/cmdtools.zip "$TOOLS_URL"
unzip -q /tmp/cmdtools.zip -d /tmp
mv /tmp/command-line-tools ~/ohos-cmd-tools
- name: Configure Environment
run: |
CLI_DIR=~/ohos-cmd-tools
echo "$CLI_DIR/sdk/default/openharmony/toolchains" >> $GITHUB_PATH
echo "$CLI_DIR/ohpm/bin" >> $GITHUB_PATH
echo "$CLI_DIR/hvigor/bin" >> $GITHUB_PATH
echo "DEVECO_SDK_HOME=$CLI_DIR/sdk" >> $GITHUB_ENV
echo "JAVA_HOME=$JAVA_HOME" >> $GITHUB_ENV
- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: Setup pnpm
run: |
npm install -g [email protected]
echo "$(npm prefix -g)/bin" >> $GITHUB_PATH
- name: Cache hvigor & ohpm
uses: actions/cache@v4
with:
path: |
~/.hvigor
~/.ohpm
ohos/.hvigor
key: hvigor-${{ runner.os }}-${{ hashFiles('**/oh-package.json5', '**/hvigorfile.ts') }}
restore-keys: |
hvigor-${{ runner.os }}-
- name: Get Third-Party Cache
id: third-party-cache
uses: actions/cache/restore@v4
with:
path: third_party
key: third-party-ohos-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
restore-keys: third-party-ohos-
- name: Run depsync
run: |
npm install depsync -g
depsync
- name: Install ohpm dependencies
run: |
cd ohos
ohpm config set registry https://ohpm.openharmony.cn/ohpm/
ohpm install --all
- name: Build Harmony
run: |
cd ohos
hvigorw assembleHar --mode module -p module=libpag@default -p product=default --no-daemon
- name: Save Third-Party Cache
if: ${{ (github.event_name == 'push') && (steps.third-party-cache.outputs.cache-hit != 'true') }}
uses: actions/cache/save@v4
with:
path: third_party
key: third-party-ohos-${{ hashFiles('DEPS') }}-${{ hashFiles('vendor.json') }}
- name: Job Failed
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ohos_build
path: ohos/out