Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: bump librime to 1.13.0 #1466

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.13.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.13.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.13.0 -use dev

- name: Build data
run: |
Expand Down
Loading