From 4753838ee78072bca84591566bbfa9eaf52b49bb Mon Sep 17 00:00:00 2001 From: fxliang Date: Thu, 7 Dec 2023 09:23:19 +0800 Subject: [PATCH] try 1.76 --- .github/workflows/commit-ci.yml | 4 ++-- .github/workflows/release-ci.yml | 4 ++-- env.bat.template | 2 +- env.vs2019.bat | 2 +- env.vs2022.bat | 2 +- install_boost.bat | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/commit-ci.yml b/.github/workflows/commit-ci.yml index 8662e3dcb..22ff8080e 100644 --- a/.github/workflows/commit-ci.yml +++ b/.github/workflows/commit-ci.yml @@ -17,8 +17,8 @@ jobs: build: runs-on: windows-2022 env: - boost_version: 1.83.0 - BOOST_ROOT: ${{ github.workspace }}\deps\boost_1_83_0 + boost_version: 1.76.0 + BOOST_ROOT: ${{ github.workspace }}\deps\boost_1_76_0 steps: - name: Checkout last commit uses: actions/checkout@v3 diff --git a/.github/workflows/release-ci.yml b/.github/workflows/release-ci.yml index 709e98978..c74310afe 100644 --- a/.github/workflows/release-ci.yml +++ b/.github/workflows/release-ci.yml @@ -11,8 +11,8 @@ jobs: contents: write runs-on: windows-2022 env: - boost_version: 1.83.0 - BOOST_ROOT: ${{ github.workspace }}\deps\boost_1_83_0 + boost_version: 1.76.0 + BOOST_ROOT: ${{ github.workspace }}\deps\boost_1_76_0 RIME_PLUGINS: rime/librime-charcode hchunhui/librime-lua lotem/librime-octagram steps: - name: Checkout last commit diff --git a/env.bat.template b/env.bat.template index 8cc16f1a3..e340567d0 100644 --- a/env.bat.template +++ b/env.bat.template @@ -1,7 +1,7 @@ rem Customize your build environment and save the modified copy to env.bat rem REQUIRED: path to Boost source directory -set BOOST_ROOT=C:\Libraries\boost_1_78_0 +set BOOST_ROOT=C:\Libraries\boost_1_76_0 rem OPTIONAL: Visual Studio version and platform toolset rem set BJAM_TOOLSET=msvc-14.2 diff --git a/env.vs2019.bat b/env.vs2019.bat index fd32a0f93..0aceff2d5 100644 --- a/env.vs2019.bat +++ b/env.vs2019.bat @@ -3,7 +3,7 @@ rem Customize your build environment and save the modified copy to env.bat set WEASEL_ROOT=%CD% rem REQUIRED: path to Boost source directory -if not defined BOOST_ROOT set BOOST_ROOT=%WEASEL_ROOT%\deps\boost_1_78_0 +if not defined BOOST_ROOT set BOOST_ROOT=%WEASEL_ROOT%\deps\boost_1_76_0 rem OPTIONAL: architecture, Visual Studio version and platform toolset rem set ARCH=Win32 diff --git a/env.vs2022.bat b/env.vs2022.bat index 4ed3bf11a..fd5242ea2 100644 --- a/env.vs2022.bat +++ b/env.vs2022.bat @@ -3,7 +3,7 @@ rem Customize your build environment and save the modified copy to env.bat set WEASEL_ROOT=%CD% rem REQUIRED: path to Boost source directory -if not defined BOOST_ROOT set BOOST_ROOT=%WEASEL_ROOT%\deps\boost_1_78_0 +if not defined BOOST_ROOT set BOOST_ROOT=%WEASEL_ROOT%\deps\boost_1_76_0 rem OPTIONAL: architecture, Visual Studio version and platform toolset rem set ARCH=Win32 diff --git a/install_boost.bat b/install_boost.bat index ab7b486d7..c372f078d 100644 --- a/install_boost.bat +++ b/install_boost.bat @@ -2,7 +2,7 @@ setlocal if not defined RIME_ROOT set RIME_ROOT=%CD% -if not defined boost_version set boost_version=1.83.0 +if not defined boost_version set boost_version=1.76.0 set boost_x_y_z=%boost_version:.=_% if not defined BOOST_ROOT set BOOST_ROOT=%RIME_ROOT%\deps\boost_%boost_x_y_z%