Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
fail-fast: false
matrix:
compiler: [ { cxx: g++-9, c: gcc-9 }, { cxx: clang++-11, c: clang-11 } ]
compiler: [ { cxx: g++-14, c: gcc-14 }, { cxx: clang++-20, c: clang-20 } ]
build-type: [ Debug, Release ]
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 1 addition & 2 deletions external/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ set(CXXOPTS_BUILD_TESTS OFF)
FetchContent_Declare(
cxxopts
GIT_REPOSITORY https://github.com/jarro2783/cxxopts
GIT_TAG v2.2.1
GIT_SHALLOW TRUE
)

Expand All @@ -46,7 +45,7 @@ set(DOCTEST_NO_INSTALL ON)
FetchContent_Declare(
doctest
GIT_REPOSITORY https://github.com/onqtam/doctest
GIT_TAG 2.4.6
GIT_TAG v2.4.12
GIT_SHALLOW TRUE
)

Expand Down
Loading