emscripten 3.1.66 #22
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: ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
env: | |
EMSCRIPTEN_VERSION: '3.1.66' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
sudo apt install -y ninja-build \ | |
libime-bin \ | |
extra-cmake-modules \ | |
gettext \ | |
marisa | |
./install-deps.sh | |
- name: Install emsdk | |
run: | | |
git clone https://github.com/emscripten-core/emsdk | |
cd emsdk | |
./emsdk install ${{ env.EMSCRIPTEN_VERSION }} | |
./emsdk activate ${{ env.EMSCRIPTEN_VERSION }} | |
- name: Build | |
run: | | |
. emsdk/emsdk_env.sh | |
python scripts/chinese-addons.py | |
python scripts/hallelujah.py | |
python scripts/rime.py | |
python scripts/thai.py | |
- name: Release | |
if: ${{ github.ref == 'refs/heads/master' }} | |
uses: 'marvinpinto/action-automatic-releases@latest' | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
automatic_release_tag: latest | |
prerelease: true | |
title: "Nightly Build" | |
files: | | |
build/*.tar.bz2 |