From e6b0f3a864db9a9ca3330f542d9391ffef82b2a9 Mon Sep 17 00:00:00 2001 From: Baber Nawaz Date: Wed, 5 Nov 2025 12:08:05 +0000 Subject: [PATCH] feat: Upgrade boost and build image tag SDB-10086 --- .github/workflows/ci-build.yml | 4 ++-- .github/workflows/gh-pages.yml | 2 +- .github/workflows/release.yml | 2 +- CMakeLists.txt | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index d6871a18..28855299 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -27,7 +27,7 @@ on: jobs: lint: runs-on: ubuntu-latest - container: reactivemarkets/build-cpp:0.46.0 + container: reactivemarkets/build-cpp:0.50.0 if: "!contains(github.event.head_commit.message, '[skip ci]')" @@ -50,7 +50,7 @@ jobs: build: runs-on: ubuntu-latest - container: reactivemarkets/build-cpp:0.46.0 + container: reactivemarkets/build-cpp:0.50.0 needs: lint if: "!contains(github.event.head_commit.message, '[skip ci]')" diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index b7b8e22c..6b63dbaa 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -23,7 +23,7 @@ on: jobs: build: runs-on: ubuntu-latest - container: reactivemarkets/build-cpp:0.46.0 + container: reactivemarkets/build-cpp:0.50.0 strategy: matrix: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 56dc316d..d7a5a8f8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ on: jobs: release: runs-on: ubuntu-latest - container: reactivemarkets/build-cpp:0.46.0 + container: reactivemarkets/build-cpp:0.50.0 strategy: matrix: diff --git a/CMakeLists.txt b/CMakeLists.txt index 2cf613b5..3a71f2c7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -163,7 +163,7 @@ include_directories( set(Boost_REALPATH ON) -find_package(Boost 1.74 CONFIG REQUIRED COMPONENTS date_time unit_test_framework) +find_package(Boost 1.88 CONFIG REQUIRED COMPONENTS date_time unit_test_framework) include_directories(SYSTEM ${Boost_INCLUDE_DIRS}) install_libraries("${Boost_DATE_TIME_LIBRARY_RELEASE}" "${Boost_UNIT_TEST_FRAMEWORK_LIBRARY_RELEASE}") message(STATUS "boost_date_time: ${Boost_DATE_TIME_LIBRARY_RELEASE}")