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

ci: bump librime 1.13.1 #1501

Merged
merged 1 commit into from
Feb 17, 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
4 changes: 2 additions & 2 deletions .github/workflows/commit-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
shell: pwsh
run: |
$ErrorActionPreference = 'Stop'
.\get-rime.ps1 -tag 1.13.0 -use dev
.\get-rime.ps1 -use dev

- name: Build data
shell: pwsh
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
shell: pwsh
run: |
$ErrorActionPreference = 'Stop'
.\get-rime.ps1 -tag 1.13.0 -use dev
.\get-rime.ps1 -use dev


- name: Build data
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
shell: pwsh
run: |
$ErrorActionPreference = 'Stop'
.\get-rime.ps1 -tag 1.13.0 -use dev
.\get-rime.ps1 -use dev

- name: Build data
run: |
Expand Down
16 changes: 14 additions & 2 deletions get-rime.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,20 @@ try {
} catch {
$cmdOk = $false
if($extract) {
Write-Host "❌ Error: 7z is not available. Maybe 7z is not in PATH or not installed"
SafeExit
Write-Host "❌ Error: 7z is not available. Maybe 7z is not in PATH or not installed";
$original_7z_url = "https://github.com/ip7z/7zip/releases/download/24.08/7zr.exe";
if ($url_pat -and $url_replace) {
$original_7z_url = $original_7z_url -replace $url_pat, $url_replace;
}
try {
Write-Host "We will download 7z console tool from: $original_7z_url";
Invoke-WebRequest -Uri $original_7z_url -OutFile ".\7z.exe";
$env:Path += ";$PWD";
$cmdOk = $true
} catch{
Write-Host "Error download 7z commandline tool";
SafeExit
}
}
}
# check 64 bit
Expand Down
33 changes: 0 additions & 33 deletions github.install.bat

This file was deleted.