From 20512b8df49020ad5354015a83ad478929226696 Mon Sep 17 00:00:00 2001 From: such-gitea Date: Mon, 5 Jan 2026 08:21:44 -0800 Subject: [PATCH] fix boost version for windows --- .gitea/workflows/build.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index b60553d..f750d07 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -114,6 +114,12 @@ jobs: git config --global url."https://github.com/".insteadOf "git@github.com:" git submodule update --init --recursive + - name: Patch Boost Requirement + run: | + echo "Downgrading Boost requirement from 1.70 to 1.69..." + # Fix the root CMakeLists.txt which asks for 1.70 + sed -i 's/find_package(Boost 1.70/find_package(Boost 1.69/g' CMakeLists.txt + - name: Build Windows Dependencies run: | # 1. Enter the submodule directory where the build system lives