From dec9341546b6ce2632709b96c345b66146e22576 Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Wed, 14 Aug 2024 20:28:49 +0300 Subject: [PATCH] Update ci.yml (#178) --- .github/workflows/ci.yml | 4 ++-- test/core/run/non_movable.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5df5ae23..8fa395dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,9 +17,9 @@ jobs: fail-fast: false matrix: include: - - toolset: gcc-13 + - toolset: gcc-14 cxxstd: "03,11,14,17,20" - os: ubuntu-22.04 + os: ubuntu-24.04 - toolset: gcc-12 # Do not remove! It is the only toolset that tests misc/strip_boost_namespace.sh cxxstd: "03,11,14,17,2a" os: ubuntu-22.04 diff --git a/test/core/run/non_movable.cpp b/test/core/run/non_movable.cpp index 93e4424a..3ac68596 100644 --- a/test/core/run/non_movable.cpp +++ b/test/core/run/non_movable.cpp @@ -22,7 +22,7 @@ int main() { #if BOOST_PFR_HAS_GUARANTEED_COPY_ELISION // MSVC-14.3 fails this test -#if !defined(_MSC_VER) || _MSC_VER < 1930 || _MSC_VER > 1939 +#if !defined(_MSC_VER) || _MSC_VER < 1930 || _MSC_VER > 1949 static_assert(boost::pfr::tuple_size_v == 4, ""); struct S5_0 { int x0; int x1; int x2; int x3; X x4; };