rename install-clang-format.ps1 to bat file #39
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: Release CI | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '[0-9]+.*' | |
workflow_dispatch: | |
jobs: | |
build-and-release: | |
permissions: | |
contents: write | |
runs-on: windows-2019 | |
env: | |
librime_build: submodule | |
boost_version: 1.84.0 | |
BOOST_ROOT: ${{ github.workspace }}\deps\boost_1_84_0 | |
steps: | |
- name: Checkout last commit | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Configure build environment | |
shell: bash | |
run: | | |
cp env.vs2019.bat env.bat | |
#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 | |
# cache boost | |
- 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 for nightly build and not stable release | |
#- name: Cache librime | |
# if: ${{ github.ref == 'refs/heads/master' && 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 for nightly build and not stable release | |
#- name: Build librime | |
# if: ${{ github.ref == 'refs/heads/master' && 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 | |
# build librime if cached | |
#- name: Copy librime built files cached | |
# if: ${{ github.ref == 'refs/heads/master' && env.librime_build == 'submodule' && steps.cache-librime.outputs.cache-hit == 'true' }} | |
# shell: bash | |
# run: | | |
# cp ./librime/dist_x64/lib/rime* ./lib64/ | |
# cp ./librime/dist_x64/lib/rime.dll ./output/ | |
# cp ./librime/dist_x64/include/*.h ./include/ | |
# cp ./librime/dist_Win32/lib/rime* ./lib/ | |
# cp ./librime/dist_Win32/lib/rime.dll ./output/Win32/ | |
- name: Build Weasel Release | |
id: build_weasel | |
if: startsWith(github.ref, 'refs/tags/') | |
shell: bash | |
env: | |
RELEASE_BUILD: 1 | |
run: | | |
./build.bat data | |
./build.bat hant arm64 | |
./build.bat installer | |
- name: Build Weasel Nightly | |
id: build_weasel_nightly | |
if: github.ref == 'refs/heads/master' | |
shell: bash | |
run: | | |
./build.bat data | |
./build.bat hant arm64 | |
./build.bat installer | |
- name: Compress Debug Symbols | |
shell: pwsh | |
run: | | |
Compress-Archive -Path output\*.pdb -CompressionLevel Optimal -DestinationPath .\output\archives\symbols.zip | |
- name: Extract changelog | |
shell: pwsh | |
run: | | |
.\extract_changelog.ps1 | |
if: startsWith(github.ref, 'refs/tags/') | |
# create nightly release | |
- name: Create Nightly 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: | | |
./output/archives/weasel*.exe | |
./output/archives/symbols.zip | |
# create stable release | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
./output/archives/weasel*.exe | |
./output/archives/symbols.zip | |
body_path: ${{ github.workspace }}/RELEASE_CHANGELOG.md | |