Skip to content

Commit

Permalink
fix nits
Browse files Browse the repository at this point in the history
  • Loading branch information
yorkie committed Jul 19, 2024
0 parents commit e640a8f
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build JSAR native deps

on:
workflow_dispatch:

jobs:
build-on-macOS:
runs-on: macos-latest
steps:
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.74.0
- name: Install Rust targets
run: |
rustup target add aarch64-apple-darwin
rustup target add x86_64-apple-darwin
- uses: actions/[email protected]
with:
node-version: 18.16.0
- name: Build ICU library
run: |
git clone https://github.com/unicode-org/icu
cd icu && git checkout release-72-1
sh build-icu.sh
4 changes: 4 additions & 0 deletions build-icu.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
cd icu4c/source && \
./configure && \
make

0 comments on commit e640a8f

Please sign in to comment.