-
Notifications
You must be signed in to change notification settings - Fork 8
818 lines (763 loc) · 28.9 KB
/
auto-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
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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
name: Auto Build
on:
# schedule:
# # 每天 UTC 12:00(即北京时间 20:00)自动执行
# - cron: '0 12 * * *'
push:
branches:
- dev
workflow_dispatch:
env:
ANDROID_NDK_VERSION: r25c
COMMIT_ID: "${{ github.sha }}"
NO_BUILD_PROMPT: "no new commits, no need to build."
NT_SIGN_URL: ${{ secrets.NT_SIGN_URL }}
jobs:
commit-num-check:
name: Check Commit Num
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get New Commits
id: get-commits
run: echo "NEW_COMMIT_COUNT=$(git log --oneline --since '24 hours ago' | wc -l)" >> $GITHUB_OUTPUT
- name: Get Commit IDs
id: get-commit-ids
run: |
echo "UI_CID=`cd sealdice-ui && git rev-parse HEAD`" >> $GITHUB_OUTPUT;
echo "CORE_CID=`cd sealdice-core && git rev-parse HEAD`" >> $GITHUB_OUTPUT;
echo "ANDROID_VERSION=`cd sealdice-android && git describe --tags --abbrev=0`" >> $GITHUB_OUTPUT;
- name: Warning
run: if [ $(git log --oneline --since '24 hours ago' | wc -l) <= 0 ]; then echo $NO_BUILD_PROMPT; fi
outputs:
commit-count: ${{ steps.get-commits.outputs.NEW_COMMIT_COUNT }}
CORE_CID: ${{ steps.get-commit-ids.outputs.CORE_CID }}
UI_CID: ${{ steps.get-commit-ids.outputs.UI_CID }}
ANDROID_VERSION: ${{ steps.get-commit-ids.outputs.ANDROID_VERSION }}
PROJECT_VERSION: ${{ steps.get-version.outputs.PROJECT_VERSION }}
resources-download:
name: Download Related Resources
runs-on: ubuntu-latest
needs: commit-num-check
if: ${{ needs.commit-num-check.outputs.commit-count > 0 }}
steps:
- name: Code
uses: actions/checkout@v4
with:
submodules: true
- name: Upload Documents
uses: actions/upload-artifact@v4
with:
name: documents
path: ./sealdice-builtins/data
lagrange-download:
name: Download Lagrange
runs-on: ubuntu-latest
needs: commit-num-check
if: ${{ needs.commit-num-check.outputs.commit-count > 0 }}
steps:
- name: Download
run: |
mkdir lag
curl https://d1.sealdice.com/lagrange/0.0.4/Lagrange.OneBot_linux-arm64_7.0.zip?v=1 > lag/Lagrange.OneBot.linux-arm64.zip
curl https://d1.sealdice.com/lagrange/0.0.4/Lagrange.OneBot_linux-x64_7.0.zip?v=1 > lag/Lagrange.OneBot.linux-amd64.zip
curl https://d1.sealdice.com/lagrange/0.0.4/Lagrange.OneBot_win-x64_7.0.zip?v=1 > lag/Lagrange.OneBot.windows-amd64.zip
curl https://d1.sealdice.com/lagrange/0.0.4/Lagrange.OneBot_win-x86_7.0.zip?v=1 > lag/Lagrange.OneBot.windows-386.zip
curl https://d1.sealdice.com/lagrange/0.0.4/Lagrange.OneBot_osx-arm64_7.0.zip?v=1 > lag/Lagrange.OneBot.darwin-arm64.zip
curl https://d1.sealdice.com/lagrange/0.0.4/Lagrange.OneBot_osx-x64_7.0.zip?v=1 > lag/Lagrange.OneBot.darwin-amd64.zip
curl https://d1.sealdice.com/lagrange/0.0.4/Lagrange.OneBot_linux-musl-arm64_7.0.zip?v=1 > lag/Lagrange.OneBot.android-arm64.zip
- name: Upload
uses: actions/upload-artifact@v4
with:
name: lagrange
path: ./lag
lagrange-setup:
name: Download Lagrange
runs-on: ubuntu-latest
needs: lagrange-download
strategy:
matrix:
# target: linux/amd64, linux/arm64, windows/amd64, darwin/amd64, darwin/arm64
goos: [ linux, windows, darwin, android ]
goarch: [ '386', amd64, arm64 ]
exclude:
- goos: linux
goarch: '386'
- goos: windows
goarch: arm64
- goos: windows
goarch: '386'
- goos: darwin
goarch: '386'
- goos: android
goarch: amd64
- goos: android
goarch: '386'
steps:
- name: Get Lagrange
uses: actions/download-artifact@v4
with:
name: lagrange
path: ./lagrange
- name: Extract
run: |
mkdir extract
ls ./lagrange/Lagrange.OneBot.${{ matrix.goos }}-${{ matrix.goarch }}.zip
file ./lagrange/Lagrange.OneBot.${{ matrix.goos }}-${{ matrix.goarch }}.zip
unzip ./lagrange/Lagrange.OneBot.${{ matrix.goos }}-${{ matrix.goarch }}.zip -d ./extract/Lagrange.OneBot.${{ matrix.goos }}-${{ matrix.goarch }}
- name: Upload
uses: actions/upload-artifact@v4
with:
name: lagrange.${{ matrix.goos }}-${{ matrix.goarch }}
path: ./extract/Lagrange.OneBot.${{ matrix.goos }}-${{ matrix.goarch }}
ui-build:
name: Build UI
runs-on: ubuntu-latest
needs: commit-num-check
if: ${{ needs.commit-num-check.outputs.commit-count > 0 }}
steps:
- name: Code
uses: actions/checkout@v4
with:
submodules: true
- name: Get Commit ID
run: |
cd sealdice-ui
echo "UI_CID=`git rev-parse --short HEAD`" >> $GITHUB_ENV;
- name: Cache ui dist get
id: cache-ui-dist
uses: actions/cache@v4
env:
cache-name: cache-ui-dist
with:
path: ./sealdice-ui/dist
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ env.UI_CID }}
- if: ${{ steps.cache-ui-dist.outputs.cache-hit == 'true' }}
name: Show cache
continue-on-error: true
run: ls ./sealdice-ui/dist
- name: Install Pnpm
uses: pnpm/action-setup@v4
if: ${{ steps.cache-ui-dist.outputs.cache-hit != 'true' }}
with:
version: 9
run_install: false
- name: Install Node
uses: actions/setup-node@v4
if: ${{ steps.cache-ui-dist.outputs.cache-hit != 'true' }}
with:
node-version: 20
- name: Install Dependencies
if: ${{ steps.cache-ui-dist.outputs.cache-hit != 'true' }}
working-directory: ./sealdice-ui
run: pnpm install
- name: Build WebUI
if: ${{ steps.cache-ui-dist.outputs.cache-hit != 'true' }}
working-directory: ./sealdice-ui
run: pnpm run build
- name: Upload UI
uses: actions/upload-artifact@v4
with:
name: sealdice-ui
path: ./sealdice-ui/dist
core-build:
name: Build Core
runs-on: ubuntu-20.04
needs: ui-build
strategy:
matrix:
# target: linux/amd64, linux/arm64, windows/amd64
goos: [ linux, windows ]
goarch: [ '386', amd64, arm64 ]
exclude:
- goos: linux
goarch: '386'
- goos: windows
goarch: arm64
- goos: windows
goarch: '386'
fail-fast: true
steps:
- name: Apt-get Update
run: sudo apt-get update
- name: Code
uses: actions/checkout@v4
with:
submodules: true
- name: Install Cross-compiler for Windows
if: matrix.goos == 'windows'
run: sudo apt-get -y install mingw-w64
- name: Install Cross-compiler for Linux Amd64 Musl
if: matrix.goos == 'linux' && matrix.goarch == 'amd64'
run: sudo apt-get -y install musl-tools
- name: Install Cross-compiler for Linux Arm64 Musl
if: matrix.goos == 'linux' && matrix.goarch == 'arm64'
run: |
curl -O https://musl.cc/aarch64-linux-musl-cross.tgz;
tar zxf aarch64-linux-musl-cross.tgz;
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
cache-dependency-path: sealdice-core/go.sum
# copy from https://github.com/MetaCubeX/mihomo/blob/0e228765fce4d709af1e672426dea5294e6b7544/.github/workflows/build.yml#L121-L141
# modify from https://github.com/restic/restic/issues/4636#issuecomment-1896455557
# this patch file only works on golang1.22.x
# that means after golang1.23 release it must be changed
# revert:
# 693def151adff1af707d82d28f55dba81ceb08e1: "crypto/rand,runtime: switch RtlGenRandom for ProcessPrng"
# 7c1157f9544922e96945196b47b95664b1e39108: "net: remove sysSocket fallback for Windows 7"
# 48042aa09c2f878c4faa576948b07fe625c4707a: "syscall: remove Windows 7 console handle workaround"
- name: Revert Golang1.22 commit for Windows7/8
if: ${{ matrix.goos == 'windows' }}
run: |
cd $(go env GOROOT)
patch --verbose -R -p 1 < $GITHUB_WORKSPACE/.github/patch_go122/693def151adff1af707d82d28f55dba81ceb08e1.diff
patch --verbose -R -p 1 < $GITHUB_WORKSPACE/.github/patch_go122/7c1157f9544922e96945196b47b95664b1e39108.diff
patch --verbose -R -p 1 < $GITHUB_WORKSPACE/.github/patch_go122/48042aa09c2f878c4faa576948b07fe625c4707a.diff
- name: Install Dependencies
working-directory: ./sealdice-core
run: |
go mod tidy
go get .
- name: Get UI Resources
uses: actions/download-artifact@v4
with:
name: sealdice-ui
path: ./sealdice-core/static/frontend
- name: Get current time
uses: Kaven-Universe/github-action-current-date-time@v1
id: currentTime
with:
format: YYYYMMDD
timezone-offset: -480
- name: Set Env
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
CUR_TIME: ${{ steps.currentTime.outputs.time }}
working-directory: ./sealdice-core
run: |
echo "PROJECT_VERSION_C=${CUR_TIME}-${COMMIT_ID::7}" >> $GITHUB_ENV;
if [ $GOOS = 'windows' ]; then
echo "BINARY_NAME=sealdice-core.exe" >> $GITHUB_ENV;
else
echo "BINARY_NAME=sealdice-core" >> $GITHUB_ENV;
fi
if [ $GOOS = 'windows' ] && [ $GOARCH = '386' ]; then
echo "CC=i686-w64-mingw32-gcc" >> $GITHUB_ENV;
elif [ $GOOS = 'windows' ] && [ $GOARCH = 'amd64' ]; then
echo "CC=x86_64-w64-mingw32-gcc" >> $GITHUB_ENV;
elif [ $GOOS = 'linux' ] && [ $GOARCH = 'amd64' ]; then
echo "CC=musl-gcc" >> $GITHUB_ENV;
elif [ $GOOS = 'linux' ] && [ $GOARCH = 'arm64' ]; then
echo "CC=$(readlink -f ../aarch64-linux-musl-cross/bin/aarch64-linux-musl-gcc)" >> $GITHUB_ENV;
fi
- name: Build Binary
if: matrix.goos != 'linux'
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
GO111MODULE: on
CGO_ENABLED: ${{ matrix.goos == 'windows' && 1 || 0 }}
CGO_FLAGS: -Werror=unused-variable -Werror=implicit-function-declaration -O2 -H=windowsgui
CUR_TIME: ${{ steps.currentTime.outputs.time }}
SEAL_TRUSTED_PRIVATE_KEY: ${{ secrets.SEAL_TRUSTED_PRIVATE_KEY }}
working-directory: ./sealdice-core
run: go build -o "output/$BINARY_NAME" -trimpath -ldflags "-s -w -X sealdice-core/dice.VERSION_PRERELEASE=-dev -X sealdice-core/dice.VERSION_BUILD_METADATA=+${CUR_TIME}.${COMMIT_ID::7} -X sealdice-core/dice.APP_CHANNEL=dev -X 'sealdice-core/dice.DefaultSignUrl=${NT_SIGN_URL}' -X 'sealdice-core/dice.SealTrustedClientPrivateKey=${SEAL_TRUSTED_PRIVATE_KEY}'" .
- name: Build Binary (linux musl)
if: matrix.goos == 'linux'
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
GO111MODULE: on
CGO_ENABLED: 1
CGO_FLAGS: -Werror=unused-variable -Werror=implicit-function-declaration -O2 -H=windowsgui
CUR_TIME: ${{ steps.currentTime.outputs.time }}
SEAL_TRUSTED_PRIVATE_KEY: ${{ secrets.SEAL_TRUSTED_PRIVATE_KEY }}
working-directory: ./sealdice-core
run: go build -tags musl -o "output/$BINARY_NAME" -trimpath -ldflags "-s -w -linkmode external -extldflags '-static' -X sealdice-core/dice.VERSION_PRERELEASE=-dev -X sealdice-core/dice.VERSION_BUILD_METADATA=+${CUR_TIME}.${COMMIT_ID::7} -X sealdice-core/dice.APP_CHANNEL=dev -X 'sealdice-core/dice.DefaultSignUrl=${NT_SIGN_URL}' -X 'sealdice-core/dice.SealTrustedClientPrivateKey=${SEAL_TRUSTED_PRIVATE_KEY}'" .
- name: Run UPX
uses: crazy-max/ghaction-upx@v3
with:
version: latest
files: ./sealdice-core/output/${{ env.BINARY_NAME }}
args: -9 -fq
- name: Upload Core
uses: actions/upload-artifact@v4
with:
name: sealdice-core_${{ env.PROJECT_VERSION_C }}_${{ matrix.goos }}_${{ matrix.goarch }}
path: ./sealdice-core/output
core-darwin-build:
name: Build Core
runs-on: macos-latest
needs: ui-build
strategy:
matrix:
# target: darwin/amd64 darwin/arm64
goos: [ darwin ]
goarch: [ amd64, arm64 ]
fail-fast: true
steps:
- name: Code
uses: actions/checkout@v4
with:
submodules: true
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
cache-dependency-path: sealdice-core/go.sum
- name: Install dependencies
working-directory: ./sealdice-core
run: |
go mod tidy
go get .
- name: Get UI Resources
uses: actions/download-artifact@v4
with:
name: sealdice-ui
path: ./sealdice-core/static/frontend
- name: Get current time
uses: Kaven-Universe/github-action-current-date-time@v1
id: currentTime
with:
format: YYYYMMDD
timezone-offset: -480
- name: Set Env
working-directory: ./sealdice-core
run: |
echo "PROJECT_VERSION_C=${CUR_TIME}-${COMMIT_ID::7}" >> $GITHUB_ENV;
env:
CUR_TIME: ${{ steps.currentTime.outputs.time }}
- name: Build Binary
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
GO111MODULE: on
CGO_ENABLED: 1
CGO_FLAGS: -Werror=unused-variable -Werror=implicit-function-declaration -O2 -mmacosx-version-min=10.12
CGO_CFLAGS: -mmacosx-version-min=10.12
CUR_TIME: ${{ steps.currentTime.outputs.time }}
SEAL_TRUSTED_PRIVATE_KEY: ${{ secrets.SEAL_TRUSTED_PRIVATE_KEY }}
working-directory: ./sealdice-core
run: go build -o "output/sealdice-core" -trimpath -ldflags "-s -w -X sealdice-core/dice.VERSION_PRERELEASE=-dev -X sealdice-core/dice.VERSION_BUILD_METADATA=+${CUR_TIME}.${COMMIT_ID::7} -X sealdice-core/dice.APP_CHANNEL=dev -X 'sealdice-core/dice.DefaultSignUrl=${NT_SIGN_URL}' -X 'sealdice-core/dice.SealTrustedClientPrivateKey=${SEAL_TRUSTED_PRIVATE_KEY}'" .
- name: Upload Core
uses: actions/upload-artifact@v4
with:
name: sealdice-core_${{ env.PROJECT_VERSION_C }}_${{ matrix.goos }}_${{ matrix.goarch }}
path: ./sealdice-core/output
core-android-build:
name: Build Core (android, arm64)
runs-on: ubuntu-20.04
needs: ui-build
steps:
- name: Code
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Android NDK
id: setup-ndk
uses: nttld/setup-ndk@v1
with:
ndk-version: ${{ env.ANDROID_NDK_VERSION }}
link-to-sdk: true
local-cache: false
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
cache-dependency-path: sealdice-core/go.sum
- name: Install dependencies
working-directory: ./sealdice-core
run: |
go mod tidy
go get .
- name: Get UI Resources
uses: actions/download-artifact@v4
with:
name: sealdice-ui
path: ./sealdice-core/static/frontend
- name: Get current time
uses: Kaven-Universe/github-action-current-date-time@v1
id: currentTime
with:
format: YYYYMMDD
timezone-offset: -480
- name: Set Env
working-directory: ./sealdice-core
run: |
echo "PROJECT_VERSION_C=${CUR_TIME}-${COMMIT_ID::7}" >> $GITHUB_ENV;
env:
CUR_TIME: ${{ steps.currentTime.outputs.time }}
- name: Build binary
env:
GOOS: android
GOARCH: arm64
CGO_ENABLED: 1
CC: ${{ steps.setup-ndk.outputs.ndk-path }}/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android33-clang
CGO_FLAGS: -Werror=unused-variable -Werror=implicit-function-declaration -O2
CUR_TIME: ${{ steps.currentTime.outputs.time }}
SEAL_TRUSTED_PRIVATE_KEY: ${{ secrets.SEAL_TRUSTED_PRIVATE_KEY }}
working-directory: ./sealdice-core
run: |
go build -o "output/sealdice-core" -trimpath -ldflags "-s -w -X sealdice-core/dice.VERSION_PRERELEASE=-dev -X sealdice-core/dice.VERSION_BUILD_METADATA=+${CUR_TIME}.${COMMIT_ID::7} -X sealdice-core/dice.APP_CHANNEL=dev -X 'sealdice-core/dice.DefaultSignUrl=${NT_SIGN_URL}' -X 'sealdice-core/dice.SealTrustedClientPrivateKey=${SEAL_TRUSTED_PRIVATE_KEY}'" .
- name: Upload Core
uses: actions/upload-artifact@v4
with:
name: sealdice-core_${{ env.PROJECT_VERSION_C }}_android_arm64
path: ./sealdice-core/output
android-build:
name: Build Android Apk
runs-on: ubuntu-20.04
needs:
- core-android-build
- resources-download
- lagrange-setup
env:
ANDROID_VERSION: ${{needs.commit-num-check.outputs.ANDROID_VERSION}}
steps:
- name: Code
uses: actions/checkout@v4
with:
submodules: true
- name: Get current time
uses: Kaven-Universe/github-action-current-date-time@v1
id: currentTime
with:
format: YYYYMMDD
timezone-offset: -480
- name: Set Env
run: |
echo "PROJECT_VERSION=dev-${CUR_TIME}.${COMMIT_ID::7}" >> $GITHUB_ENV;
echo "PROJECT_VERSION_C=${CUR_TIME}-${COMMIT_ID::7}" >> $GITHUB_ENV;
env:
CUR_TIME: ${{ steps.currentTime.outputs.time }}
- name: Get Core-android
uses: actions/download-artifact@v4
with:
name: sealdice-core_${{ env.PROJECT_VERSION_C }}_android_arm64
path: ./sealdice-android/app/src/main/assets/sealdice
- name: Get Documents
uses: actions/download-artifact@v4
with:
name: documents
path: ./sealdice-android/app/src/main/assets/sealdice/data
- name: Get App-Runner
run: |
curl https://d1.sealdice.com/lagrange/app-runner-std-arm64.tar.gz > ./sealdice-android/app/src/main/assets/app-runner-arm64.tar.gz
- name: Get Lagrange
uses: actions/download-artifact@v4
with:
name: lagrange.android-arm64
path: ./sealdice-android/app/src/main/assets/sealdice/lagrange/
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Set Execution Flag
working-directory: ./sealdice-android
run: chmod +x gradlew
- name: Remove ARCA Config
working-directory: ./sealdice-android/app/src/main/java/com/sealdice/dice
run: |
sed -i '/secrets.Auth.*/d' MyApplication.kt
sed -i '/httpSender {/,/}/d' MyApplication.kt
- name: Set Version
working-directory: ./sealdice-android/app
run: |
sed -i 's/versionName ".*"/versionName "${{ env.PROJECT_VERSION }}"/g' build.gradle
env:
CUR_TIME: ${{ steps.currentTime.outputs.time }}
- name: Build Apk
working-directory: ./sealdice-android
run: |
bash ./gradlew assembleDebug --stacktrace
- name: Sign Android release
uses: r0adkll/sign-android-release@v1
# ID used to access action output
id: sign_app
with:
releaseDirectory: ./sealdice-android/app/build/outputs/apk/debug
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
env:
# override default build-tools version (29.0.3) -- optional
BUILD_TOOLS_VERSION: "34.0.0"
- name: Rename Apk
working-directory: ./sealdice-android
run: |
mv ./app/build/outputs/apk/debug/app-debug-signed.apk ./app/build/outputs/apk/debug/sealdice_${{ env.PROJECT_VERSION_C }}_arm64.apk
- name: Upload Apk
uses: actions/upload-artifact@v4
with:
name: sealdice_${{ env.PROJECT_VERSION_C }}_android_arm64
path: ./sealdice-android/app/build/outputs/apk/debug/sealdice_${{ env.PROJECT_VERSION_C }}_arm64.apk
pc-pack:
name: PC Pack
runs-on: ubuntu-latest
needs:
- resources-download
# - gocqhttp-build
- core-build
- core-darwin-build
- lagrange-setup
strategy:
matrix:
# target: linux/amd64, linux/arm64, windows/amd64, darwin/amd64, darwin/arm64
goos: [ linux, windows, darwin ]
goarch: [ '386', amd64, arm64 ]
exclude:
- goos: linux
goarch: '386'
- goos: windows
goarch: arm64
- goos: windows
goarch: '386'
- goos: darwin
goarch: '386'
steps:
- name: Get current time
uses: Kaven-Universe/github-action-current-date-time@v1
id: currentTime
with:
format: YYYYMMDD
timezone-offset: -480
- name: Set Env
run: |
echo "PROJECT_VERSION_C=${CUR_TIME}-${COMMIT_ID::7}" >> $GITHUB_ENV;
env:
CUR_TIME: ${{ steps.currentTime.outputs.time }}
- name: Get Documents
uses: actions/download-artifact@v4
with:
name: documents
path: ./data
- name: Get Lagrange
uses: actions/download-artifact@v4
with:
name: lagrange.${{ matrix.goos }}-${{ matrix.goarch }}
path: ./lagrange/
- name: Get Core
uses: actions/download-artifact@v4
with:
name: sealdice-core_${{ env.PROJECT_VERSION_C }}_${{ matrix.goos }}_${{ matrix.goarch }}
path: .
- name: Set Execute Attribute
if: matrix.goos != 'windows'
run: chmod +x ./sealdice-core
- name: Upload
uses: actions/upload-artifact@v4
with:
name: sealdice_${{ env.PROJECT_VERSION_C }}_${{ matrix.goos }}_${{ matrix.goarch }}
path: .
preparation:
name: Compressed Files Preparation
runs-on: ubuntu-20.04
needs:
- pc-pack
- android-build
- commit-num-check
strategy:
matrix:
# target: linux/amd64, linux/arm64, windows/amd64, darwin/amd64, darwin/arm64, android/arm64
goos: [ linux, windows, darwin ]
goarch: [ '386', amd64, arm64 ]
exclude:
- goos: linux
goarch: '386'
- goos: windows
goarch: arm64
- goos: windows
goarch: '386'
- goos: darwin
goarch: '386'
include:
- goos: android
goarch: arm64
env:
ANDROID_VERSION: ${{needs.commit-num-check.outputs.ANDROID_VERSION}}
steps:
- name: Get current time
uses: Kaven-Universe/github-action-current-date-time@v1
id: currentTime
with:
format: YYYYMMDD
timezone-offset: -480
- name: Set Env
run: |
echo "PROJECT_VERSION_C=${CUR_TIME}-${COMMIT_ID::7}" >> $GITHUB_ENV;
env:
CUR_TIME: ${{ steps.currentTime.outputs.time }}
- name: Get Files
uses: actions/download-artifact@v4
with:
name: sealdice_${{ env.PROJECT_VERSION_C }}_${{ matrix.goos }}_${{ matrix.goarch }}
path: ./temp/
- name: Compress (default)
if: matrix.goos != 'windows' && matrix.goos != 'android'
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
CUR_TIME: ${{ steps.currentTime.outputs.time }}
run: |
cd ./temp && find . -type f | cut -c 3- | tar -zcvf ../sealdice_${PROJECT_VERSION_C}_${GOOS}_${GOARCH}.tar.gz -T -;
echo "DIST=sealdice_${PROJECT_VERSION_C}_${GOOS}_${GOARCH}.tar.gz" >> $GITHUB_ENV;
- name: Compress (windows)
if: matrix.goos == 'windows'
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
CUR_TIME: ${{ steps.currentTime.outputs.time }}
run: |
cd ./temp
find . -type f
zip -r ../sealdice_${PROJECT_VERSION_C}_${GOOS}_${GOARCH}.zip .
echo "DIST=sealdice_${PROJECT_VERSION_C}_${GOOS}_${GOARCH}.zip" >> $GITHUB_ENV;
- name: Skip Compress (android)
if: matrix.goos == 'android'
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
CUR_TIME: ${{ steps.currentTime.outputs.time }}
run: |
mv ./temp/sealdice_${PROJECT_VERSION_C}_${GOARCH}.apk ./sealdice-android_${ANDROID_VERSION}_${PROJECT_VERSION_C}_${GOARCH}.APK
echo "DIST=sealdice-android_${ANDROID_VERSION}_${PROJECT_VERSION_C}_${GOARCH}.APK" >> $GITHUB_ENV;
- name: Upload
uses: actions/upload-artifact@v4
with:
name: sealdice-prerelease_${{ env.PROJECT_VERSION_C }}_${{ matrix.goos }}_${{ matrix.goarch }}
path: ${{ env.DIST }}
prerelease:
name: Prerelease
runs-on: ubuntu-latest
needs:
- preparation
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get Files
uses: actions/download-artifact@v4
with:
pattern: sealdice-prerelease*
path: ./dist/
merge-multiple: true
- name: Get current time
uses: Kaven-Universe/github-action-current-date-time@v1
id: currentTime
with:
format: YYYYMMDD
timezone-offset: -480
- name: Update Prerelease tag
run: |
git tag -f pre-release
git push -f origin pre-release
- name: Update Prerelease
uses: ncipollo/release-action@v1
with:
tag: pre-release
name: 'Latest Dev Build ${{ steps.currentTime.outputs.time }}'
prerelease: true
body: '> ⚠️注意️️:这是自动构建的预发布版本,非正式版本!'
artifacts: |
dist/sealdice*
allowUpdates: true
removeArtifacts: true
# 可以使用,但因为文件名都是 sealdice_dev-aea89ca_20230919_linux_arm64.tar.gz
# 这种形式 有一点捉急。就先屏蔽了
# - uses: ryand56/r2-upload-action@latest
# continue-on-error: true
# with:
# r2-account-id: ${{ secrets.R2_ACCOUNT_ID }}
# r2-access-key-id: ${{ secrets.R2_ACCESS_KEY_ID }}
# r2-secret-access-key: ${{ secrets.R2_SECRET_ACCESS_KEY }}
# r2-bucket: ${{ secrets.R2_BUCKET }}
# source-dir: ./dist
# destination-dir: ./dev
docker-push:
name: Docker Push
runs-on: ubuntu-latest
needs:
- pc-pack
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- name: Get current time
uses: Kaven-Universe/github-action-current-date-time@v1
id: currentTime
with:
format: YYYYMMDD
timezone-offset: -480
- name: Set Env
env:
CUR_TIME: ${{ steps.currentTime.outputs.time }}
run: |
echo "PROJECT_VERSION_C=${CUR_TIME}-${COMMIT_ID::7}" >> $GITHUB_ENV;
- name: Get Amd64 Files
uses: actions/download-artifact@v4
with:
name: sealdice_${{ env.PROJECT_VERSION_C }}_linux_amd64
path: ./amd64/
- name: Get Arm64 Files
uses: actions/download-artifact@v4
with:
name: sealdice_${{ env.PROJECT_VERSION_C }}_linux_arm64
path: ./arm64/
- name: Chmod
run:
chmod +x ./amd64/sealdice-core && chmod +x ./arm64/sealdice-core
- name: Docker Login
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ github.repository_owner }}/sealdice
tags: |
type=edge
type=sha,event=branch
type=ref,event=tag
- name: Docker Build
uses: docker/build-push-action@v3
with:
context: .
file: ./scripts/Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
build-args: |
AUTHOR=${{ github.repository_owner }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
clear-temp-artifact:
name: Clear Temp Artifacts
if: always()
runs-on: ubuntu-latest
needs:
- prerelease
permissions:
actions: write
steps:
- uses: geekyeggo/delete-artifact@v4
with:
token: ${{ github.token }}
name: |
documents
go-cqhttp*
sealdice-ui
sealdice-core*
sealdice-prerelease*