From e9b8442274807cf966ecb16407710bf703453aa5 Mon Sep 17 00:00:00 2001 From: Nadeem Yaseen <70559777+NadeemYaseen@users.noreply.github.com> Date: Tue, 20 Aug 2024 17:50:32 +0500 Subject: [PATCH 1/2] Update main.yml to use GCC 12 as 11 is no longer available on macos image [[macOS] GCC 11 will be removed from all macOS images on August 12](https://github.com/actions/runner-images/issues/10213) --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eb0022477..61e6d84c4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -418,8 +418,8 @@ jobs: # https://github.com/actions/runner-images/issues/6350 sudo xcode-select -s '/Applications/Xcode_13.4.1.app/Contents/Developer' - echo 'CC=gcc-11' >> $GITHUB_ENV - echo 'CXX=g++-11' >> $GITHUB_ENV + echo 'CC=gcc-12' >> $GITHUB_ENV + echo 'CXX=g++-12' >> $GITHUB_ENV echo "PATH=$(brew --prefix)/opt/ccache/libexec:$PATH" >> $GITHUB_ENV echo 'PREFIX=${GITHUB_WORKSPACE}/install' >> $GITHUB_ENV echo "$PREFIX" >> $GITHUB_PATH From 4bb4a9123c69cfb817dc6c61ec100727b7af663d Mon Sep 17 00:00:00 2001 From: NadeemYaseen Date: Tue, 20 Aug 2024 13:09:01 +0000 Subject: [PATCH 2/2] Incremented patch version --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a704a9b22..9704a034c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,7 +39,7 @@ set(VERSION_MINOR 0) # Add the spdlog directory to the include path include_directories(${CMAKE_CURRENT_SOURCE_DIR}/third_party/spdlog/include ${CMAKE_CURRENT_SOURCE_DIR}/third_party/exprtk ${CMAKE_CURRENT_SOURCE_DIR}/third_party/scope_guard) -set(VERSION_PATCH 416) +set(VERSION_PATCH 417) option(