diff --git a/.github/workflows/linux_build.yml b/.github/workflows/linux_build.yml index 7ba6159..9a79667 100644 --- a/.github/workflows/linux_build.yml +++ b/.github/workflows/linux_build.yml @@ -27,12 +27,12 @@ jobs: matrix: cxx: - g++-10 - - clang++-14 + - clang++-12 include: - cxx: g++-10 compiler: g++-10 - - cxx: clang++-14 - compiler: clang++-14 + - cxx: clang++-12 + compiler: clang++-12 env: CXX: ${{matrix.cxx}} CMAKE_PREFIX_PATH: ${{github.workspace}}/.local diff --git a/.github/workflows/windows_build_no_boost.yml b/.github/workflows/windows_build_no_boost.yml index a9292b9..fa61beb 100644 --- a/.github/workflows/windows_build_no_boost.yml +++ b/.github/workflows/windows_build_no_boost.yml @@ -2,7 +2,7 @@ name: Windows Build Boost Fetch on: push: - branches: [ master ] + branches: [ master, win_rev_linux_fix ] paths: - ".github/workflows/windows_build_no_boost.yml" - "include/**" diff --git a/CMakeLists.txt b/CMakeLists.txt index 28b0b23..a5c8e2b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -57,7 +57,7 @@ if(QUICK_FTXUI_TESTS) FetchContent_Declare( Catch2 GIT_REPOSITORY https://github.com/catchorg/Catch2.git - GIT_TAG v3.0.1 # or a later release + GIT_TAG v3.4.0 # or a later release ) FetchContent_MakeAvailable(Catch2)