Skip to content
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

Use latest googletest for builds on macOS 11.0 or higher #937

Merged
merged 35 commits into from
Feb 19, 2022
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
e94571f
fix macos build
lalitb Oct 5, 2021
8c986bd
add comments
lalitb Oct 5, 2021
fb5f438
Merge branch 'main' into macos-11-googletest
lalitb Oct 5, 2021
34655ce
Merge branch 'main' into macos-11-googletest
lalitb Oct 19, 2021
8701895
Merge branch 'main' into macos-11-googletest
lalitb Feb 18, 2022
f440b39
fix
lalitb Feb 18, 2022
f5bb319
Merge branch 'macos-11-googletest' of github.com:microsoft/cpp_client…
lalitb Feb 18, 2022
0efb8f1
fix compare
lalitb Feb 18, 2022
ced85ad
fix
lalitb Feb 18, 2022
7886023
mac first octet extract
lalitb Feb 18, 2022
13bdeda
fix
lalitb Feb 18, 2022
d7299c0
updating googletest to latest
lalitb Feb 18, 2022
0df92c4
retry
lalitb Feb 18, 2022
4ebb295
retry
lalitb Feb 19, 2022
153ecce
fix
lalitb Feb 19, 2022
c10121d
retry
lalitb Feb 19, 2022
b9a9930
fix
lalitb Feb 19, 2022
7387d0c
fix
lalitb Feb 19, 2022
6d3ddc8
fix
lalitb Feb 19, 2022
1ebb1d1
fix
lalitb Feb 19, 2022
914c4a1
fix
lalitb Feb 19, 2022
bedc757
Merge branch 'main' into macos-11-googletest
lalitb Feb 19, 2022
08414b2
fix
lalitb Feb 19, 2022
9113d9d
Merge branch 'macos-11-googletest' of github.com:microsoft/cpp_client…
lalitb Feb 19, 2022
7a90163
fix
lalitb Feb 19, 2022
f60709d
more changes
lalitb Feb 19, 2022
74ec559
filter failing test
lalitb Feb 19, 2022
6115484
revert
lalitb Feb 19, 2022
f9d81bb
move ios build to older version
lalitb Feb 19, 2022
ca53d62
revert to older mac for ios build
lalitb Feb 19, 2022
4a46d9e
comment
lalitb Feb 19, 2022
8a18d7d
fix
lalitb Feb 19, 2022
157bfc6
more
lalitb Feb 19, 2022
d290c11
fix
lalitb Feb 19, 2022
665e19b
fix
lalitb Feb 19, 2022
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
Prev Previous commit
Next Next commit
fix compare
  • Loading branch information
lalitb committed Feb 18, 2022
commit 0efb8f1dd378b2e1beb1fc39bf01bee10498f36a
2 changes: 1 addition & 1 deletion build-gtest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ case "$OS_NAME" in
Darwin)
mac_os_ver=$(sw_vers -productVersion)
# Use new Google Test on macOS 11.0 or higher ; old one no longer compiles on 11.0
if [[ $(echo "${mac_os_ver} >= 11.0"|bc) -gt 0 ]] ; then
if [[ "${mac_os_ver}" >= "11.0.*" ]] ; then
echo "running on Mac OS 11.0 or higher"
USE_LATEST_GTEST="true"
else
Expand Down