Skip to content

Commit

Permalink
CI: bump to boost 1.84.0, enable ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
driver1998 authored and lotem committed Feb 24, 2024
1 parent e0398ca commit a0cf552
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/commit-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
runs-on: windows-2022
env:
librime_build: 'submodule'
boost_version: 1.83.0
BOOST_ROOT: ${{ github.workspace }}\deps\boost_1_83_0
boost_version: 1.84.0
BOOST_ROOT: ${{ github.workspace }}\deps\boost_1_84_0
steps:
- name: Checkout last commit
uses: actions/checkout@v4
Expand All @@ -45,7 +45,10 @@ jobs:
# install boost if not cached
- name: Install Boost
if: steps.cache-boost.outputs.cache-hit != 'true'
run: .\install_boost.bat
shell: bash
run: |
./install_boost.bat
./build.bat boost arm64
# add msbuild to PATH
- name: Add msbuild to PATH
Expand Down Expand Up @@ -89,6 +92,7 @@ jobs:
run: |
./build.bat data
./build.bat hant
./build.bat arm64
./build.bat installer
- name: Compress Debug Symbols
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
runs-on: windows-2022
env:
librime_build: submodule
boost_version: 1.83.0
BOOST_ROOT: ${{ github.workspace }}\deps\boost_1_83_0
boost_version: 1.84.0
BOOST_ROOT: ${{ github.workspace }}\deps\boost_1_84_0
steps:
- name: Checkout last commit
uses: actions/checkout@v4
Expand All @@ -43,7 +43,10 @@ jobs:
# install boost if not cached
- name: Install Boost
if: steps.cache-boost.outputs.cache-hit != 'true'
run: .\install_boost.bat
shell: bash
run: |
./install_boost.bat
./build.bat boost arm64
# add msbuild to PATH
- name: Add msbuild to PATH
Expand Down Expand Up @@ -93,6 +96,7 @@ jobs:
run: |
./build.bat data
./build.bat hant
./build.bat arm64
./build.bat installer
- name: Compress Debug Symbols
Expand Down

0 comments on commit a0cf552

Please sign in to comment.