fix cache #800
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: Commit CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '*' | |
tags: | |
- '![0-9]+.*' | |
paths: | |
- '**/**' | |
- '!*.md' | |
- '!.gitignore' | |
pull_request: | |
jobs: | |
build: | |
runs-on: windows-2019 | |
env: | |
boost_version: 1.84.0 | |
BOOST_ROOT: ${{ github.workspace }}\deps\boost_1_84_0 | |
librime_build: 'submodule' | |
steps: | |
- name: Checkout last commit | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Cache llvm | |
id: cache-llvm | |
uses: actions/cache@v4 | |
with: | |
path: C:\\Program Files\\LLVM | |
key: ${{ runner.os }}-llvm-17.0.6 | |
- name: Install llvm | |
if: steps.cache-llvm.outputs.cache-hit != 'true' | |
run: choco install llvm --version=17.0.6 | |
- name: Code style lint | |
shell: bash | |
run: ./clang-format.sh -i | |
- name: Configure build environment | |
shell: bash | |
run: | | |
cp env.vs2019.bat env.bat | |
echo git_ref_name="$(git describe --always)" >> $GITHUB_ENV | |
librime_id=$(git submodule foreach --quiet 'if [ $name == "librime" ]; then echo `git rev-parse HEAD`; fi') | |
echo "librime_id is $librime_id" | |
echo "librime_id=$librime_id" >> $GITHUB_ENV | |
- name: Cache Boost | |
id: cache-boost | |
uses: actions/cache@v4 | |
with: | |
path: | | |
${{ env.BOOST_ROOT }} | |
key: ${{ runner.os }}-boost-${{ env.boost_version }} | |
# install boost if not cached | |
- name: Install Boost | |
if: steps.cache-boost.outputs.cache-hit != 'true' | |
shell: bash | |
run: | | |
./install_boost.bat | |
./build.bat boost arm64 | |
# add msbuild to PATH | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
# use upper stream released librime files if stable release | |
#- name: Copy Rime files | |
# run: | | |
# .\github.install.bat | |
# cache librime | |
- name: Cache librime | |
if: env.librime_build == 'submodule' | |
id: cache-librime | |
uses: actions/cache@v4 | |
with: | |
path: | | |
librime | |
key: ${{ runner.os }}-librime-${{ env.librime_id }}-dual | |
# build librime if not cached | |
- name: Build librime | |
#if: ${{ env.librime_build == 'submodule' && steps.cache-librime.outputs.cache-hit != 'true' }} | |
env: | |
RIME_PLUGINS: hchunhui/librime-lua lotem/librime-octagram rime/librime-predict | |
shell: bash | |
run: | | |
# load plugins | |
pushd librime | |
./action-install-plugins-windows.bat | |
popd | |
./build.bat librime | |
cp librime/build_x64/bin/Release/rime.pdb output/ | |
cp librime/build_Win32/bin/Release/rime.pdb output/Win32 | |
- name: Build data | |
run: | | |
.\build.bat data | |
- name: Build Weasel | |
id: build_weasel | |
run: | | |
.\build.bat arm64 installer | |
- name: Compress Debug Symbols | |
shell: pwsh | |
run: | | |
output\7z.exe a -t7z "./output/archives/debug_symbols.7z" "output/*.pdb" -r | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: weasel-artifact-${{ env.git_ref_name }} | |
if-no-files-found: error | |
path: | | |
.\output\archives\weasel*.exe | |
.\output\archives\debug_symbols.7z |