Skip to content

Commit

Permalink
build: bump librime to 1.12.0
Browse files Browse the repository at this point in the history
chore: add tool script  for updating librime lib from upstream
  • Loading branch information
fxliang committed Jan 4, 2025
1 parent 588a31f commit e8b2ff8
Show file tree
Hide file tree
Showing 4 changed files with 395 additions and 7 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/commit-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,22 +87,29 @@ jobs:
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2

- name: Copy Rime files
- name: Get Rime files
shell: pwsh
run: |
.\github.install.bat
$ErrorActionPreference = 'Stop'
.\get-rime.ps1 -tag 1.12.0 -use dev
- name: Build data
shell: pwsh
run: |
$ErrorActionPreference = 'Stop'
.\build.bat data
- name: Build Weasel
shell: pwsh
id: build_weasel
run: |
$ErrorActionPreference = 'Stop'
.\build.bat arm64 installer
- name: Compress Debug Symbols
shell: pwsh
run: |
$ErrorActionPreference = 'Stop'
output\7z.exe a -t7z "./output/archives/debug_symbols.7z" "output/*.pdb" -r
- name: Upload artifacts
Expand Down Expand Up @@ -160,10 +167,12 @@ jobs:

- uses: ilammy/msvc-dev-cmd@v1

- name: Copy Rime files
- name: Get Rime files
shell: pwsh
run: |
.\github.install.bat
$ErrorActionPreference = 'Stop'
.\get-rime.ps1 -tag 1.12.0 -use dev
- name: Build data
run: |
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,11 @@ jobs:
uses: microsoft/setup-msbuild@v2

# use upper stream released librime files if stable release
- name: Copy Rime files
- name: Get Rime files
shell: pwsh
run: |
.\github.install.bat
$ErrorActionPreference = 'Stop'
.\get-rime.ps1 -tag 1.12.0 -use dev
- name: Build data
run: |
Expand Down
Loading

0 comments on commit e8b2ff8

Please sign in to comment.