Build #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: librime-ios-build | |
submodules: recursive | |
- name: Checkout librime | |
uses: actions/checkout@v4 | |
with: | |
repository: TypeDuck-HK/librime | |
path: librime | |
submodules: recursive | |
- name: Select Xcode version | |
run: sudo xcode-select -s /Applications/Xcode_15.2.app/Contents/Developer | |
- name: Build | |
run: | | |
brew install coreutils | |
cd librime | |
git submodule add https://github.com/Cantoboard/librime-cantoboard.git plugins/librime-cantoboard | |
cd ../librime-ios-build | |
./build-ios.sh ../librime all | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
path: | | |
librime-ios-build/output/Rime.xcframework |