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

0.10.7: emscripten 3.1.53 #30

Merged
merged 1 commit into from
Feb 2, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "CC=/usr/bin/clang" >> $GITHUB_ENV
echo "CXX=/usr/bin/clang++" >> $GITHUB_ENV
- name: Install macOS dependencies
if: ${{ inputs.os == 'macos-latest' }}
if: ${{ startsWith(inputs.os, 'macos') }}
run: |
brew install ninja clang-format
- name: Install Windows dependencies
Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,15 @@ jobs:
with:
os: ubuntu-latest

build-macos:
build-macos-x86:
uses: ./.github/workflows/build.yml
with:
os: macos-latest
os: macos-13

build-macos-arm:
uses: ./.github/workflows/build.yml
with:
os: macos-14

build-windows:
uses: ./.github/workflows/build.yml
Expand All @@ -31,7 +36,7 @@ jobs:
os: [ubuntu-latest]
browser: [chromium, firefox] # webkit
include:
- os: macos-latest
- os: macos-14
browser: webkit

steps:
Expand All @@ -57,7 +62,7 @@ jobs:
run: |
npx playwright test --browser ${{ matrix.browser }} test/
- name: Test device
if: ${{ matrix.os == 'macos-latest' }}
if: ${{ startsWith(inputs.os, 'macos') }}
run: |
npx playwright test --browser ${{ matrix.browser }} test-device/

Expand Down
4 changes: 2 additions & 2 deletions checksum
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
f6a0288a806954b8c0f1d34148aa43e1 public/rime.data
a8d2ea8479ac687d84733742c888c955 public/rime.js
489b08984c533c159fe4999368bb76b1 public/rime.wasm
a05f8632c836fa1a77b833461b454447 public/rime.js
7a9eb29da23cfb36a4bd427f30df7ee4 public/rime.wasm
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libreservice/my-rime",
"version": "0.10.6",
"version": "0.10.7",
"files": [
"dist"
],
Expand Down
Loading