Skip to content

Commit

Permalink
revert to fmt10; try clang 18 and 19
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxiBoether committed Jan 7, 2025
1 parent 15a2b39 commit 5ef97e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
- name: Install clang-tidy
run: |
sudo apt update
sudo apt install -y clang-tidy-15
sudo apt install -y clang-tidy-15 libsqlite3-dev
cmake --version
- name: Configure CMake
Expand All @@ -138,8 +138,8 @@ jobs:
compiler:
- { c: gcc, cxx: g++, version: 12 }
- { c: gcc, cxx: g++, version: 14 }
- { c: clang, cxx: clang++, version: 14 }
- { c: clang, cxx: clang++, version: 17, coverage: true }
- { c: clang, cxx: clang++, version: 18 }
- { c: clang, cxx: clang++, version: 19, coverage: true }
include:
# Currently, there is a linking error with zlib if we use clang 16 for sanitizers
# Let's investigate this when clang > 14 is os default - one problem could be the external clang installation
Expand Down
2 changes: 1 addition & 1 deletion cmake/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ message(STATUS "Making fmt available.")
FetchContent_Declare(
fmt
GIT_REPOSITORY https://github.com/fmtlib/fmt.git
GIT_TAG 11.0.2
GIT_TAG 10.2.1
)
FetchContent_MakeAvailable(fmt)

Expand Down

0 comments on commit 5ef97e2

Please sign in to comment.