Skip to content

Commit

Permalink
Update main.yml to use GCC 12 as GCC 11 is no longer available on mac…
Browse files Browse the repository at this point in the history
…os image (#1677)

* 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](actions/runner-images#10213)

* Incremented patch version

---------

Co-authored-by: NadeemYaseen <NadeemYaseen@users.noreply.github.com>
  • Loading branch information
NadeemYaseen and NadeemYaseen authored Aug 20, 2024
1 parent d35f0f0 commit 7053938
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 7053938

Please sign in to comment.