Skip to content

Commit

Permalink
Enable Clang17 on CI and ensure date conversions work (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
Twon authored Dec 30, 2024
1 parent 9849fa9 commit 1216212
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,20 @@ jobs:
},
lib: "libc++",
}
- {
name: "Ubuntu Clang-17 + libc++",
os: ubuntu-latest,
compiler:
{
type: CLANG,
version: 17,
conan: "clang",
cc: "clang-17",
cxx: "clang++-17",
std: 20
},
lib: "libc++",
}
- {
name: "Visual Studio 2019",
os: windows-latest,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#define MORPHEUS_CPP_LIB_CHRONO_FORMATTING \
(((MORPHEUS_COMPILER == MORPHEUS_VISUALSTUDIO_COMPILER) && (__cpp_lib_chrono < 201907L)) || \
((MORPHEUS_COMPILER == MORPHEUS_GNUC_COMPILER) && (MORPHEUS_COMP_VER < 140000000)) || \
((MORPHEUS_COMPILER == MORPHEUS_CLANG_COMPILER) && (MORPHEUS_COMP_VER < 170000000)) || \
((MORPHEUS_COMPILER == MORPHEUS_CLANG_COMPILER) && (MORPHEUS_COMP_VER < 180000000)) || \
((MORPHEUS_COMPILER == MORPHEUS_APPLE_CLANG_COMPILER) && (MORPHEUS_COMP_VER < 150000000)))

#if MORPHEUS_CPP_LIB_CHRONO_FORMATTING
Expand Down

0 comments on commit 1216212

Please sign in to comment.