-
Notifications
You must be signed in to change notification settings - Fork 406
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmake: Update googletest / glslang to fix CMake warnings #6073
cmake: Update googletest / glslang to fix CMake warnings #6073
Conversation
CI Vulkan-ValidationLayers build queued with queue ID 1068. |
CI Vulkan-ValidationLayers build # 12536 running. |
CI Vulkan-ValidationLayers build # 12536 passed. |
@@ -75,7 +75,7 @@ | |||
"-Dgtest_force_shared_crt=ON", | |||
"-DBUILD_SHARED_LIBS=OFF" | |||
], | |||
"commit": "v1.13.0", | |||
"commit": "ec4fed93217bc2830959bb8e86798c1d86956949", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We used tagged release previously, do they continue to create new releases? I heard they use live at the HEAD internally, so I guess it should be fine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Google test very infrequently creates tagged releases. The have a live at head philosophy so it's fine to use specific commits.
GoogleTest now follows the Abseil Live at Head philosophy. We recommend updating to the latest commit in the main branch as often as possible. We do publish occasional semantic versions, tagged with v${major}.${minor}.${patch} (e.g. v1.13.0).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't follow all details but it looks like a good clean up in other projects and also each one went through a review, so LGTM!
Relevant PRs I made to fix these warnings in these repos:
KhronosGroup/glslang#3241
google/googletest#4288
google/googletest#4290
google/googletest#4293